Support » Plugin: Sliderly » Next and Previous Arrows

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’ve been trying to get this function to work too. I’ve tried using the prev / next link classes as used on the original JSlider..

    Hi,
    I’ve been trying a lot of thinks and finally found how to solve it.
    Modify js.php at line 21 from:

    $('.sliderly-slideshow').each(function(){
    	if (!$(this).hasClass("set"))
    	{
    		$(this).slides({
    			play: "<?php echo $duration; ?>",
    			pause: 2000,
    			hoverPause: true,
    			effect: "<?php echo $effect; ?>"
    		});
    		$(".sliderly-slideshow").addClass("set");
    	}
    });

    To:

    $('.sliderly-slideshow').each(function(){
    	if (!$(this).hasClass("set"))
    	{
    		$(this).slides({
    			play: "<?php echo $duration; ?>",
    			generateNextPrev: true,
    			pause: 2000,
    			hoverPause: true,
    			effect: "<?php echo $effect; ?>"
    		});
    		$(".sliderly-slideshow").addClass("set");
    	}
    });

    Then you will have to modify the CSS, but now you will see the nexy/prev buttons
    Hope it helps.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Next and Previous Arrows’ is closed to new replies.