Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Thanks again for the fix of the maps button in 1.2.2.
I now noticed that the first image of an album in single image view would show the "Previous" button and the last image the "Next" button. Both with text instead of a symbol. The usual behaviour was to not show this button at all.
Thx
Andreas
Offline
Matt, I'm seeing the same thing in my test albums. Here's what it looks like on the first image:
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
If you don't want to wait until Matt fixes this in a maintenance release, you could use jQuery to hide those buttons on the first and last images. Use this in the ttg_scripts phplugins hook:
<script>
$(\'ul.single_icons li span:contains("Previous")\').hide();
$(\'ul.single_icons li span:contains("Next")\').hide();
</script>
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline