This is the code you have for the ad location after the last post.
// Begin Ad Seller Pro Location - After Last Post
global $sourcedir;
include_once $sourcedir . "/adseller2.php";
$adSellerAdData = ShowAdLocation(5);
if ($adSellerAdData != false)
{
echo '<div class="', ($message['alternate'] == 0 ? 'windowbg' : 'windowbg2') , '">
<span class="topslice"><span></span></span>
<div class="poster">
</div>
<div class="post">
' . $adSellerAdData . '
</div>';
echo'
<span class="botslice"><span></span></span>
</div>
';
}
// End Ad Seller Pro Location - After Last Post
As it is now I only show it to guest.
I would like to create another ad and place it in the same location, then show it to all except guest.
All the div stuff is confusing me on how to place the code for the second ad location that I created.
Do I somehow just ad to this part of the code?
$adSellerAdData = ShowAdLocation(5);
if ($adSellerAdData != false)
Thanks,