Warlord
09-21-2009, 02:03 PM
Is there a way to do this?
I know you can do it manually with attach=left but I was wondering if there was a way to insert the last attachment to a post automatically so that it will align to the left of the beginning of a post.
--------------- Added 1253549755 at 1253549755 ---------------
This is the code I'm trying, but for some reason the attachment id isn't being used....
<if condition="$post['attachments']">
<a href="$vboptions[bburl]/attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&d=$attachment"<if condition="$show['newwindow']"> target="_blank"</if>><img src="$vboptions[bburl]/attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]" width="100" border="0" align="left" hspace="10" alt="<phrase 1="$attachment[filename]" 2="$attachment[counter]" 3="$attachment[filesize]" 4="$attachment[attachmentid]">$vbphrase[image_larger_version_x_y_z]</phrase>" /></a>
</if>
--------------- Added [DATE]1253551435 at 1253551435 ---------------
Ok, so it looks to me like the $attachment[attachmentid] just isn't parsing in the postbit. I think everything else is working correctly.
I'm guessing I have to add a hook to postbit_display_complete to define the attachment id somehow?
I've looked through the ftp files, searching for the code I assume that I need to add there, but am coming up short. :(
--------------- Added 1253553032 at 1253553032 ---------------
Ok, it looks like I was right... $attachment[attachmentid] wasn't meant to work in the postbit.
http://www.vbulletin.com/forum/showthread.php?p=1791943#post1791943
Now I just need to figure out how to make it work in the postbit.
I know you can do it manually with attach=left but I was wondering if there was a way to insert the last attachment to a post automatically so that it will align to the left of the beginning of a post.
--------------- Added 1253549755 at 1253549755 ---------------
This is the code I'm trying, but for some reason the attachment id isn't being used....
<if condition="$post['attachments']">
<a href="$vboptions[bburl]/attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&d=$attachment"<if condition="$show['newwindow']"> target="_blank"</if>><img src="$vboptions[bburl]/attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]" width="100" border="0" align="left" hspace="10" alt="<phrase 1="$attachment[filename]" 2="$attachment[counter]" 3="$attachment[filesize]" 4="$attachment[attachmentid]">$vbphrase[image_larger_version_x_y_z]</phrase>" /></a>
</if>
--------------- Added [DATE]1253551435 at 1253551435 ---------------
Ok, so it looks to me like the $attachment[attachmentid] just isn't parsing in the postbit. I think everything else is working correctly.
I'm guessing I have to add a hook to postbit_display_complete to define the attachment id somehow?
I've looked through the ftp files, searching for the code I assume that I need to add there, but am coming up short. :(
--------------- Added 1253553032 at 1253553032 ---------------
Ok, it looks like I was right... $attachment[attachmentid] wasn't meant to work in the postbit.
http://www.vbulletin.com/forum/showthread.php?p=1791943#post1791943
Now I just need to figure out how to make it work in the postbit.