View Full Version : Alternating Postbit Legacy Colours
ttlgDaveh
12-23-2009, 06:31 PM
On my current forum (running 3.8.4) I use the postbit legacy template with alternating colours. (post 1 is colour 1, post 2 is colour 2, post 3 is colour 1, post 4 is colour 2 etc) but the method I use for vB3 does not work for vB4, probably because of the need for variable registration.
Unfortunately PHP is not a language I am familiar with, but if somebody could tell me how to achieve alternating postbit colours I would be very grateful!
ttlgDaveh
01-21-2010, 04:55 PM
This is the code I am using under vB3.8.4. It goes into postbit_legacy.
<if condition="$GLOBALS[altclass] == '1'">
<if condition="$GLOBALS[altclass] = '2'"></if>
<else />
<if condition="$GLOBALS[altclass] = '1'"></if>
</if>
Lynne
01-21-2010, 04:57 PM
Well, if's are done differently in vb4 - <vb:if condition=""> and <vb: else /> and </vb:if> . Have you tried it with the new syntax?
ttlgDaveh
01-21-2010, 05:07 PM
Yes I have.
The top of my postbit legacy template looks like this
{vb:raw template_hook.postbit_start}
<vb:if condition="$GLOBALS[altclass] == '1'">
<vb:if condition="$GLOBALS[altclass] = '2'"></vb:if>
<vb:else />
<vb:if condition="$GLOBALS[altclass] = '1'"></vb:if>
</vb:if>
<li class="postbitlegacy_$GLOBALS[altclass] postbitim" id="post_{vb:raw post.postid}">
The HTML that is output is <li class="postbitlegacy_$GLOBALS[altclass] postbitim" id="post_2">
Thanks for your reply :)
--------------- Added 1264102650 at 1264102650 ---------------
Ok, solved it.
Remove the postbit legacy code and replace with a plugin in postbit_display_start with this
if($GLOBALS[altclass] == '1')
{
$GLOBALS[altclass] = '2';
}else{
$GLOBALS[altclass] = '1';
}
And the top of postbit legacy becomes
<li class="postbitlegacy_{vb:raw GLOBALS[altclass]} postbitim postcontainer" id="post_{vb:raw post.postid}">
Sean James
07-19-2011, 04:43 AM
Having problems getting this code to work in 4.1.4
Lynne
07-19-2011, 04:26 PM
Then post your *exact* code so we can see it and try it on our own test sites.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.