I have tried many combinations and haven't figured out this one yet
if someone would be so kind
this is what I had figured out in the vb3 conditionals:
PHP Code:
<if condition="$post[usergroupid]==11"><font color="#ffcc00" face="verdana, arial, helvetica" size="1"><b>Site Supporter</b></font> <img src="/forum/eimages/supporter.gif" width="11" height="11" border="0" /></if>
how can that be modified to work within the <? ?> in the earlier vbulletin version that I have installed this hack in?
I have tried several things but only get parse errors displayed above the header
stuff like:
PHP Code:
<?
if (condition = $post[usergroupid]==11) {
$var = "<font color=\"#ffcc00\" face=\"verdana, arial, helvetica\" size=\"1\"><b>Site Supporter</b></font> <img src=\"/forum/eimages/supporter.gif\" width=\"11\" height=\"11\" border=\"0\" />"
}
?>
and:
PHP Code:
<?
if ($post[usergroupid] != 11) {
$var = "<smallfontcolor='#ffcc00'><b>Site Supporter</b></smallfont> <img src='/forum/eimages/supporter.gif' width='11' height='11' border='0' />"
}
?>
I know it is just because I don't know the language to use
thanks a bunch for any help