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 [DATE]1253549755[/DATE] at [TIME]1253549755[/TIME] ---------------
This is the code I'm trying, but for some reason the attachment id isn't being used....
Code:
<if condition="$post['attachments']">
<a href="$vboptions[bburl]/attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&d=$attachment[dateline]"<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[/DATE] at [TIME]1253551435[/TIME] ---------------
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 [DATE]1253553032[/DATE] at [TIME]1253553032[/TIME] ---------------
Ok, it looks like I was right... $attachment[attachmentid] wasn't meant to work in the postbit.
http://www.vbulletin.com/forum/showt...43#post1791943
Now I just need to figure out how to make it work in the postbit.