[high]
Exclude Certain Colors Add-On[/high]
Change
HTML Code:
<if condition="$post['fieldx'] != '' ">
<font style="color:$post[fieldx]">$post[musername]</font>
<else />
$post[musername]
</if>
To
HTML Code:
<if condition="$post['fieldx'] != '' ">
<if condition="$post['fieldx'] == 'COLORCODE1' OR $post['fieldx'] == 'COLORCODE2' OR $post['fieldx'] == 'COLORCODE3' OR $post['fieldx'] == 'COLORCODE4' ">
<else />
<font style="font-family:$post[fieldx]">$post[musername]</font>
</if>
<else />
$post[musername]
</if>
Replace COLORCODE1, COLORCODE2, ETC. with the codes you want to excluce.