This is my code:
However, firefox users are reporting white pages, and in IE 7 after I post with quick reply I'm seeing a small table header with "Sponsored Links" in it.. but nothing (the ads) under it. The ads should only show up after the first post.. not after you post with quick reply. If you post via the "Post Reply" button it seems to work fine.
This is Vbulletin 3.5.4:
PHP Code:
<!-- Google Ads for NON members -->
<if condition="!is_member_of($bbuserinfo, 5,7,9,10,11,14) AND !$GLOBALS['FIRSTPOSTID']">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<*** ADSENSE SCRIPT CODE HERE***>
</td>
</tr>
</table>
</div>
$spacer_close
</if>
</if>
<!-- END Google Ads for NON Members -->
Anyone know how to fix this?
Aceman