Quote:
Originally Posted by Tulsa
To use this hack for 3.6.2
Look for this in your postbit or legacy...
Code:
<div id="post_message_$post[postid]">$post[message]</div>
</if>
Replace with this...
Code:
<if condition="$post['fieldx'] != '' OR $post['fieldx'] != ''">
<font style="font-family:$post[fieldx]; color:$post[fieldx];">$post[message]</font>
<else />
<div id="post_message_$post[postid]">$post[message]</div>
</if>
Don't forget to change the X's to whatever fields you specified originally.
|
Hi. I am trying to get this to work for VB3.6.2 and can't seem to figure out what I did wrong. I copied the codes, changed the fields and the font is the only thing that works. Unfortunately I want this for the color. Here is what I am using:
Code:
<!-- message -->
<if condition="$post['field8'] != '' OR $post['field8'] != ''">
<font style="font-family:$post[field9]; color:$post[field9];">$post[message]</font>
<else />
<div id="post_message_$post[postid]">$post[message]</div>
</if>
<!-- / message -->
Any help would be very appreciated!