PDA

View Full Version : Show Thread Enhancements - Use Highslide in Attachment Thumbnails


luki
12-02-2008, 10:00 PM
Download newest version of HS from: http://highslide.com/download.php.
Upload highslide directory to your Forums root.


Template edits:

Postbit Templates >> postbit_attachmentthumbnail
FIND
<a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;d=$attachment[dateline]"<if condition="$show['newwindow']"> target="_blank"</if>>

REPLACE WITH
<a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;d=$attachment[dateline]"<if condition="$show['newwindow']"> target="_blank"</if> class="highslide" onclick="return hs.expand(this)">

Open headinclude, somewhere add:
<script type="text/javascript" src="$vbpoptions[bbdir]/highslide/highslide.js"></script>
<link rel="stylesheet" type="text/css" href="$vbpoptions[bbdir]/highslide/highslide.css" />

<script type="text/javascript">
hs.graphicsDir = 'highslide/graphics/';
hs.wrapperClassName = 'wide-border';
</script>

Code depends on which type of outfit etc you want to have. After this modification you get working setup.

1320Nation
12-04-2008, 12:45 AM
Works perfect....Thanks!

BigJohnny
02-27-2009, 01:57 AM
nevermind

tlwwolfseye
05-11-2009, 09:58 AM
My postbit attachment thumbnail code is the following.


<if condition="$show['cangetattachment']">
<a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;d=$attachment[dateline]" rel="Lightbox_$post[postid]" id="attachment$attachment[attachmentid]"<if condition="$show['newwindow']"> target="_blank"</if>><img class="thumbnail" src="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;stc=1&amp;thumb=1&amp;d=$attachment[thumbnail_dateline]" border="0" alt="<phrase 1="$attachment[filename]" 2="$attachment[counter]" 3="$attachment[filesize]" 4="$attachment[attachmentid]">$vbphrase[image_larger_version_x_y_z]</phrase>" /></a>
&nbsp;<if condition="$show['br']"><br /><br /></if>
<else />
<a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;d=$attachment[dateline]" rel="nofollow" id="attach$attachment[attachmentid]"><img class="thumbnail" src="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;stc=1&amp;thumb=1&amp;d=$attachment[thumbnail_dateline]" border="0" alt="$attachment[filename]" /></a>
&nbsp;<if condition="$show['br']"><br /><br /></if>
</if>

Its different from the one you write above one should replace. So what do I replace in my case now ?

lm3a.net
05-21-2009, 07:29 AM
thanks,,

need2fart
10-11-2009, 01:40 AM
Thank you for this! I installed. =)