Hello,
I am wondering if anyone knows how to designate a different "Final Image Link" rule for a specified album?
In theme options I have this set to "Standard ZenPhoto - New Window". However I need to disable "Final Image Link" altogether for my animation gallery, which uses jPlayer. Currently when using Standard Zenphoto final image linking with jPlayer it gives a direct link to the full sized video -- this is undesirable.
My knowledge of php is extremly limited, I just muddle along as best I can. From what I have been able to piece together online, I sense this is the bit of code that needs to be altered:
``
<?php if (function_exists('printjCarouselThumbNav')) {<br />
printjCarouselThumbNav(5,65,65,65,65,false);
} else {
if (function_exists("printPagedThumbsNav")) {
printPagedThumbsNav(5,true,' ',' ',65,65);
}
} ?>
``
Essentially need to add a seperate rule for album "Animations" that sets zp_final_link to 'nolink' for only that album.
Any help is greatly appreciated!