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]&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>
in postbit legacy find:
<if condition="$show['postcount']">#<a href="showpost.php?$session[sessionurl]p=$post[postid]&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>