This is the code for the testimonial slider:
jQuery('.content-slider').each(function() {
var slider = jQuery(this),
autoplay = ((slider.attr('data-autoplay') === "yes") ? true : false);
slider.flexslider({
animation: "fade", //String: Select your animation type, "fade" or "slide"
slideshow: autoplay, //Boolean: Animate slider automatically
slideshowSpeed: 6000, //Integer: Set the speed of the slideshow cycling, in milliseconds
animationDuration: 1000, //Integer: Set the speed of animations, in milliseconds
smoothHeight: true,
directionNav: true, //Boolean: Create navigation for previous/next navigation? (true/false)
controlNav: false, //Boolean: Create navigation for paging control of each clide? Note: Leave true for manualControls usage
start: function() {}
});
});
Looks like you were changing the wrong one.
– Ed