PDA

View Full Version : Is there an addon for posting multiple pictures?


charmarie
06-19-2006, 06:54 PM
Removed

blinking8s
06-20-2006, 05:09 AM
http://pixelpost.org/v1/index.php?x=downloads&details=85

Glovebox
06-23-2006, 05:01 PM
Could someone post a link or some screenshots of an implementation of "Today's Images"? Does it work for PP1.5? I'm not sure it's quite what I'm looking for...

Cheers,
Simon

Doodleblog (http://www.doodleblog.co.uk) - simple but subtly addictive...

j_ambrose
09-21-2006, 12:40 AM
So how does this work? I downloaded it and have uploaded it and it shows as "on" in my admin addons page. How do I get two images to show up on the same page on the same day now?

nygorilla
09-21-2006, 04:49 AM
By multiple images I think everyone is referring to a post like this:

http://wvs.topleftpixel.com/archives/photos_people/060917_1682.shtml

GeoS
09-21-2006, 05:47 AM
@j_ambrose: read documentation of this addon. There for sure is everything what you should know about it.

sangohan
10-11-2006, 05:58 PM
Which tag do I replace specifically? I'm new to pixelpost, using the sugar template...

So this will take all my posts from one day and compile it into one big post with multiple pictures? Can I add titles for each?

dcreighton
10-17-2006, 12:19 AM
I am also curious what tags to replace on the image template page. The documentation isn't very clear. At least not for this first time Pixelpost user.

fredxeric
10-17-2006, 02:23 AM
I try it myself also and it is not working and there is no documentation for this addons

Vernon.Trent
10-17-2006, 05:13 AM
Which tag do I replace specifically? I'm new to pixelpost, using the sugar template...

So this will take all my posts from one day and compile it into one big post with multiple pictures? Can I add titles for each?

I am also curious what tags to replace on the image template page. The documentation isn't very clear. At least not for this first time Pixelpost user.

I try it myself also and it is not working and there is no documentation for this addons

Details - Today Images (multiple photo in the front page) (addon)
Download Author: raminia. Developer Website: http://pblog.raminia.com Version: 0.1
Added: 2005-07-07 14:59:33
Updated: 2005-09-17 12:14:27
Category: addon
Requires Pixelpost version - Description:
Adds two new tags to show the thumbnails and images of the same day in the main page.
This way you can show full-size multiple images in Pixelpost photoblog on the main page.

You can use it in your template instead of image tag.

new tags:

<TODAY_IMAGE_THUMBNAILS>

<TODAY_IMAGES>

dcreighton
10-17-2006, 07:03 AM
Vernon- I know you are trying to help but there are at least three of us that read that and don't find it very clear. Like what Image Tag (where in the template code since I don't see it yet) do I replace with these new tags? Sorry if some of us new users are naive but I figured out a few things in the scripts and codes already with no problem but this one has me confused. Probably something very simple that I'm overlooking but if someone would spell it out it would be much appreciated.

Vernon.Trent
10-17-2006, 09:19 AM
check your image_template.html and look to the code which displays your image.
then replace with the <today_images>
that's all.

fredxeric
10-18-2006, 06:55 PM
check your image_template.html and look to the code which displays your image.
then replace with the <today_images>
that's all.


I did that replacing image tag but no photo is displaying

fredxeric
10-18-2006, 07:08 PM
Ok so this is the line that show the image

<div><a href="index.php?showimage=<IMAGE_PREVIOUS_ID>"><img src="images/<IMAGE_NAME>" onmouseover="return overlib('Cliqu&eacute; pour voir la photo pr&eacute;c&eacute;dente', CAPTION, '<b>Titre:</b> <IMAGE_TITLE> <br /><EXIF_CAMERA_MODEL> | <EXIF_FOCAL_LENGTH> | <EXIF_APERTURE> | <EXIF_EXPOSURE_TIME> | ISO <EXIF_ISO> | <EXIF_EXPOSURE_BIAS><br />');" onmouseout="return nd();" width="<IMAGE_WIDTH>" height="<IMAGE_HEIGHT>" id="photo" alt="" /></a><div>

So I should replace the <IMAGE_NAME> with the new tag <TODAY_IMAGES> but it is not working........ see a very big red cross on my page now...

Vernon.Trent
10-18-2006, 07:22 PM
sorry, my answer was a little bit confusing.

place <TODAY_IMAGES> just before the line which shows your images.

just tried on my dev server and it shows correctly the images uploaded today.

fredxeric
10-18-2006, 07:53 PM
sorry, my answer was a little bit confusing.

place <TODAY_IMAGES> just before the line which shows your images.

just tried on my dev server and it shows correctly the images uploaded today.

Ok and if you wanted to have the exact same way that the picture was showing before you have to erase the line and change the new tag in the php script call photos_today.php a line 85

fredxeric
10-18-2006, 08:28 PM
Another problem I found, I cannot use the same standard line the I have used in the image_template.htm there is no link to add $image_previous_id.

How do I do to use the $image_previous_id tag in this file

Dennis
10-19-2006, 05:03 PM
The correct tag for image_previous_id is <IMAGE_PREVIOUS_ID>.

Could you post your standard line here?

fredxeric
10-19-2006, 06:11 PM
I know that the image_previous_id is <IMAGE_PREVIOUS_ID>. But when you edit the photos_today.php file you cannot insert correct tag, you have to put the $ sign with the correct variable instead of putting the quoted tag <>.

photos_today.php
$today_images .= "<a href='$PHP_SELF?showimage=$image_id'><img src='images/$image_name' alt='$image_title' title='$image_title' /></a><br /><br />";

image_template.html
<div><a href="index.php?showimage=<IMAGE_PREVIOUS_ID>"><img src="images/<IMAGE_NAME>" onmouseover="return overlib('Cliqu&eacute; pour voir la photo pr&eacute;c&eacute;dente', CAPTION, '<b>Titre:</b> <IMAGE_TITLE> <br /><EXIF_CAMERA_MODEL> | <EXIF_FOCAL_LENGTH> | <EXIF_APERTURE> | <EXIF_EXPOSURE_TIME> | ISO <EXIF_ISO> | <EXIF_EXPOSURE_BIAS><br />');" onmouseout="return nd();" width="<IMAGE_WIDTH>" height="<IMAGE_HEIGHT>" id="photo" alt="" /></a><div>

So for each <> code I have to replace with $ sign instead