Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
target="_blank"
to the link tag.<?php echo plogger_display_comments(); ?>
2) Can an album have a comment or description attached which can be displayed, if so, how?
You can add a description to an album or collection in the Admin -> Manage tab. It gets displayed in the theme file by calling the function plogger_get_collection_description() or plogger_get_album_description() in the collection or album "while loop".
3) Can the thumbnails be setup to automatically show the file name below each of them, if so, how?
Yep. Just open the 'picture.php' file in your theme directory and you can use the basename(plogger_get_picture_path()) to get just the name of the file.
print '<p id="description">' . plogger_get_picture_description() . '</p>';
print '<p id="description">' . basename(plogger_get_picture_path()) . '</p>';
5) Can the full size pictures be displayed in a new pop-up window instead of in the same page, if so, how?
Just open the 'album.php' file in the theme directory you are using and add:target="_blank"
to the link tag.
while(plogger_has_pictures()) {
print plogger_get_album_description();
plogger_load_picture();
// display thumbnails within album
// generate XHTML with thumbnail and link to picture view.
$capt = plogger_get_picture_caption();
$img_id = "thumb-".plogger_get_picture_id();
$imgtag = '<img id="' . $img_id
. '" onmouseout="document.getElementById(\'overlay\').style.visibility = \'hidden\';"
onmouseover="display_overlay(\''.$img_id.'\', \''.plogger_picture_comment_count().'\')" class="photos"
src="'.plogger_get_picture_thumb().'" title="'.$capt.'" alt="'.$capt.'" />';
print '<li class="thumbnail"><div class="tag"><a href="' . plogger_get_picture_url() . '" target="_blank">' . $imgtag . "</a><br />";
print basename(plogger_get_picture_path());
print plogger_download_checkbox(plogger_get_picture_id());
print '</div></li>';
}
Fatal error: Call to undefined function: plogger_get_picture_path() in /hermes/web08/b1649/pow.ridgedale/htdocs/WHN/gallery/themes/default/album.php on line 26
6) Can the comments section on the full size image page be omitted, if so, how?
Yep, just open 'picture.php' in the theme directory you are using and remove the code:<?php echo plogger_display_comments(); ?>
7) Which file(s) need(s) to be edited to move/restyle the elements on the Plogger pages, if so, how?
Everything for the front-end gallery is found in the theme directory that you are using. The names of the files are pretty straightforward. All of the CSS is in the 'gallery.css' file located within that theme file as well.
1 to 5 of 5