This code works a treat <if condition="!$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 code here> </if> </td> </tr> </table> </div> $spacer_close </if> PHP: However what condition do i need to add in order for it to show my code for guests only? Thanks!
Probably something like this... if it's the first post and they don't have a userid... <if condition="!$GLOBALS['FIRSTPOSTID'] && !$bbuserinfo[userid]"> PHP: