Log in

View Full Version : Show Thread Enhancements - Collapsible first posts like vb.org or collapse every post


RyanFabbro
09-07-2012, 10:00 PM
this will allow each of your posts to be collapsible, i use it to only collapse the first post like here at vb.org.

in postbit legacy find:
<if condition="$show['postcount']">#<a href="showpost.php?$session[sessionurl]p=$post[postid]&amp;postcount=$post[postcount]" target="new" rel="nofollow" id="postcount$post[postid]" name="$post[postcount]"><strong>$post[postcount]</strong></a></if>

below add:
<a href="#top" onclick="return toggle_collapse('firstpost_$post[postid]')"><img id="collapseimg_firstpost_$post[postid]" src="$stylevar[imgdir_button]/collapse_tcat{$vbcollapse['collapseimg_firstpost_' . $post[postid]]}.gif" alt="" border="0" style="vertical-align:middle; padding:0px; margin:0px 0px 0px 5px" /></a>

then find:
<tr valign="top">

above add
<tbody id="collapseobj_firstpost_$post[postid]" style="{$vbcollapse['collapseobj_firstpost_' . $post[postid]]}">

then search for
$template_hook[postbit_end]
above add
</tbody>

to only display on first post wrap that first code you add with the if condition like so:
<if condition="$post[postcount] == 1">
<a href="#top" onclick="return toggle_collapse('firstpost_$post[postid]')"><img id="collapseimg_firstpost_$post[postid]" src="$stylevar[imgdir_button]/collapse_tcat{$vbcollapse['collapseimg_firstpost_' . $post[postid]]}.gif" alt="" border="0" style="vertical-align:middle; padding:0px; margin:0px 0px 0px 5px" /></a>
</if>

matrex722
11-10-2012, 12:34 PM
Wow thanks for this i will try it

al2thero
11-13-2012, 06:26 AM
i will try it too