whatachamp
Member
Posted 2 years ago #
I have attached about 45 images to a page and added the slider shortcode.
When I view the page the slider only shows the first 10 images and has a blank thumbnail for the 11th image then no more images.
Why is it doing this?
I've tried changing the slider settings from thumbnails to numbers and also the dots. But everytime itjust shows 10 images.
Thanks
http://wordpress.org/extend/plugins/easy-nivo-slider/
wslover317
Member
Posted 1 year ago #
Having the same problem, ever figure this out?
wslover317
Member
Posted 1 year ago #
Found the answer...
In the Plugins/easy-nivo-slider/misc/functions.php
Search for:
// Handle number of pictures
if (NULL==$parms['number']) $parms['number'] = 10;
if ('all'==$parms['number']) $parms['number'] = 999;
I changed the 10 to 999
OR use number="all" in the shortcode... For example [nivo source="current-post" number="all"] will show all images -- limited to 999 as per the second line of the code found by wslover ;)