Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #303589

    I want to remove the navigation bullets at the bottom of the “Fullwidth Easy Slider” and make it stop after the first round of images. It bothers me seeing the images rotation over and over. Can that be done?

    #304058

    Hi Victor!

    Open js/shortcodes.js and look for this (around 3861):

    if( this.isAnimating || this.itemsCount < 2 )
    {
    	return false;
    }

    Replace it by this:

    if( this.isAnimating || this.itemsCount < 2 )
    {
    	return false;
    }
    
    if( dir === 'next' && this.current >= this.itemsCount - 1 )
    {
    	this._stopSlideshow();
    	return false;
    }

    To remove the bullets, add this to Quick CSS:

    .avia-slideshow-dots{ display: none !important; }
    

    Best regards,
    Josue

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.