Here is what i did to automatically remove (or hide), the "buy it link and image" from displaying, when seller does not accept pay-pal.
in edit templates>classifieds_Templates>classifieds_showad
Find this
PHP Code:
<tr>
<td align="left" class="vbmenu_option">
<img border="0" src="classifieds/images/buy.gif" width="15" height="15" align="left" style="padding-right:3px;" />
<a href="classifieds.php?do=buy&adid=$ad[id]&title=$title"><b>$vbphrase[classifieds_buy]</b></a>
</td>
</tr>
replace with
PHP Code:
<if condition="empty($ad[paypalemail])"> <else /> <tr>
<td align="left" class="vbmenu_option">
<img border="0" src="classifieds/images/buy.gif" width="15" height="15" align="left" style="padding-right:3px;" />
<a href="classifieds.php?do=buy&adid=$ad[id]&title=$title"><b>$vbphrase[classifieds_buy]</b></a>
</td>
</tr></if>
all you are doing is adding the <if> and <else /> tags to top and closing </if> tag at bottom.
Hope this helps someone else.
__________
Thanks.