Hi there,
The thumb slider is different, and requires editing /js/functions.js.php 267-281 to the following:
thumb: function() {
$j('.flexslider').each(function() {
var thumbSlider = $j(this);
thumbSlider.flexslider({
animation: "fade", //String: Select your animation type, "fade" or "slide"
slideDirection: "horizontal", //String: Select the sliding direction, "horizontal" or "vertical"
slideshow: true, //Boolean: Animate slider automatically
slideshowSpeed: 1000, //Integer: Set the speed of the slideshow cycling, in milliseconds
animationDuration: 600, //Integer: Set the speed of animations, in milliseconds
directionNav: false, //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
keyboardNav: false //Boolean: Allow slider navigating via keyboard left/right keys
});
});
}
– Ed