Yes you are correct about the links. In the version i uploaded i forgot to add the option to the configuration at the admin panel. It should be controlled from there.
I will add it to the next update i will submit soon.
Regarding the other issue, i am adding more than 5 images and they are displaying fine. What type of image are you uploading and what size?
If you or anyone else wants to add the functionality of enabling the linking of images you can run this SQL from your admin->tools->install SQL patches
Code:
SET @configuration_group_id=0;
SELECT @configuration_group_id:=configuration_group_id
FROM configuration_group
WHERE configuration_group_title= 'Frontpage Slideshow'
LIMIT 1;
(NULL, 'Linkable Images', 'FRONTPAGE_SLIDESHOW_LINKSLIDES', 'false', 'Make the images point to the link provided from the Tools menu', @configuration_group_id, 12, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');
Bookmarks