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?
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