Hi,

I am using featured content slider of version 6.x-2.1. I want to get my slides rotated even on clicking the pagination. I have gone through the content_slider.js file and found the following code:

if (setting.autorotate[0]){ //if auto rotate enabled
pdiv[setting.revealtype]=function(){
featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
}
sliderdiv["onclick"]=function(){ //stop content slider when slides themselves are clicked on
featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
}
setting.autorotate[1]=setting.autorotate[1]+(1/setting.enablefade[1]*50) //add time to run fade animation (roughly) to delay between rotation
this.autorotate(setting)
}

Due to this only the click on numbers/pagination stops the auto-rotation of the slides. Now i need to override this function in my template.php file.

I have tried a lot but unable to do it. Please any help is appreciable.