Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
1 to 14 of 14
Posted By: lrd1I was just wondering if you really wanted to pull the images into existing pages or if you instead wanted to create a Plogger theme based on your existing site. Both ways will work since the site layout will remain the same for each type of dog.
1. The same. I dont see how this matters though since if the thumnails can be inserted into any page by adding a line of code to that page, what does it matter? But when the thumnail itself is clicked it the page template that shows the thumnail can be standard/the same.
Posted By: lrd12. Link to the full size image.This can definitely be done. You'll just have to modify the 'picture.php' file in the theme you are using to allow a back button or something (which can be done easily if you use a custom Plogger theme.
Posted By: lrd13. Yes. But i dont think this is a HTML/CSS issue for me. I more need to know how to get plogger to write the thumnails to a certain page. E.g. make the chihuahua thumnails appear at the bottom of the page chihuahua.php. And do make the bulldog thumnails appear at bottom of the bulldog.php page. Etc, etc. I can fiddle with the html/css of the template files, what i just mentioned is my main problem.Yep, I was just making sure that you would be comfortable with us making suggestions for you to work on it rather than take the time to do it ourselves (I don't have a ton of free time for that sort of thing).
Posted By: lrd14. Yes, i CAN manually code in where the thumnails will be pulled. I can physically open the page chihuahua.php in my HTML editor and place the php code you give me into the page so that the thumnails from that Chihuahua album appear in that page. Each page chihuahua.php, bulldog.php, dalmatian.php will pull its respective thumnails into the page. And like i said i will manually open each page (chihuahua.php, bulldog.php, dalmatian.php etc) in a text editor and place the code you give me into the page so it pulls the thumbnails in.Cool, but think about which option you would prefer in #1 above.
Posted By: lrd15. No, site isnt live yet. But i think you can just tell me what to do based on all the info i gave you above - if, in fact, it can be done.That's fine. I was just trying to get a feel for the layout before I recommended one way or the other. If it were me, I would maybe do the custom Plogger theme (a little more time up front probably, but much easier to maintain and update later on).
<?php require("gallery.php"); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php the_gallery_head(); ?>
</head>
<body>
<?php
if ($GLOBALS['plogger_level'] != "picture") {
$GLOBALS['plogger_level'] = "album";
$GLOBALS['plogger_id'] = 78;
}
the_gallery();
?>
</body>
</html>
No Images
Sorry, but there are no images in this album yet.
<?php
require("gallery.php");
if ($GLOBALS['plogger_level'] != "picture") {
$GLOBALS['plogger_level'] = "album";
$GLOBALS['plogger_id'] = 78;
plogger_init();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php the_gallery_head(); ?>
</head>
<body>
<?php the_gallery(); ?>
</body>
</html>
if (!isset($_GET['level']) && !isset($_SESSION['check'])) {
$GLOBALS['plogger_level'] = "album";
$GLOBALS['plogger_id'] = 78;
plogger_init();
$_SESSION['check'] = true;
}
1 to 14 of 14