« See all FAQs for Accentuate Premium Wordpress 3 Theme
How do I make the NivoSlider stop after the slides are played (so it doesn’t keep looping)?
The following line needs to be added to the javascript of the NivoSlider:
slideshowEnd: function(){}
});
You need to open and edit the header.php file and replace the javascript code for the NivoSlider. In header.php Find:
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider();
});
</script>
Just replace the above code with the following code:
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider({
slideshowEnd: function(){}
});
});
</script>
To learn about all the other customisations and options for the NivoSlider visit: http://nivo.dev7studios.com/

