AbanteCart Community

eCommerce construction => Installation and Configuration => Configuration => Topic started by: helperbee on September 24, 2015, 03:21:26 PM

Title: Speed of Testimonial slider
Post by: helperbee on September 24, 2015, 03:21:26 PM
I would like to slow down the advance of the testimonials slider. It goes much too fast for longer customer quotes. Thanks.
Title: Re: Speed of Testimonial slider
Post by: abantecart on September 24, 2015, 09:38:24 PM
you need to change a speed of flexslider

See file:
https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/view/default/javascript/custom.js

In code:
Code: [Select]
    $('#testimonialsidebar').flexslider({
        animation: "slide",
        start: function (slider) {
            $('body').removeClass('loading');
        }
    });

Try to add
slideshowSpeed: 7000,
animationSpeed: 600,

You can increase, decrease numbers as you need.