Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
Posted By: switchbladeHowever is there a way to tell the script to NOT use the picture name when I click on the link?You will need to have something for the image name, otherwise you are hoping to have the same URL link to the album AND each individual picture within that album. It's not possible. The new codebase for the next release removes the file extension from the URL, so hopefully that will satisfy your needs. I can direct you to the link if you wanted to try it out.
Posted By: switchbladeFurther more is it possible when somebody clicks on a picture to "enlarge" it, it instead redirects them to another page?Do you just want it to open in a new window? If so, just add a target="_blank" in the <a> tag in the picture.php file in the theme you are using. This won't validate as XHTML 1.0 strict, but it will open the link in a new window for you (otherwise, you have to use javascript to get it to open AND validate at the same time if that's the way you want to go).
print '<li class="thumbnail"><div class="tag"><a href="' . plogger_get_picture_url() . '">' . $imgtag . "</a><br />";
print '<li class="thumbnail"><div class="tag"><a href="' . plogger_get_picture_caption() . '" target="_blank">' . $imgtag . "</a><br />";
print '
<div id="picture-holder">
<a accesskey="v" href="'.plogger_get_source_picture_url().'">'.$imgtag.'</a>
</div>';
print '
<div id="picture-holder">
<a accesskey="v" href="'.plogger_get_picture_caption().'">'.$imgtag.'</a>
</div>';
1 to 10 of 10