Quote:
Originally Posted by Teascu Dorin
This product is great but it seems is appearing for registered users and me as administrator also. Shouldn't be seen only by visitors /unregistered?
Thank you!
|
Quote:
Originally Posted by MYU
Same here, members do not see it but the mods/admin still do. I've tried my own code which works for other ad placements, it still shows for mods/admins?
Really good mod but it's starting to do my head in now. 
|
The mod uses a template, in that template you define the <vb:if codes>
Here is the template:
Code:
<vb:comment>Start of Innovative Ads After First Post</vb:comment>
<vb:if condition="$show['guest'] OR $show['member']">
<vb:if condition="!$GLOBALS['FIRSTPOSTID']">
<li class="postbitlegacy postbitim postcontainer" id="post_{vb:raw post.postid}">
<div class="posthead" style="height:15px;"><span class="innovativetitle"><a href="register.php">Register to remove these Ads!</a></span>
</div>
<div class="postdetails" style="height:320px;">
<div style="margin-top:20px;"></div>
<div id="innovativeadspan">
<div id="innovativeadleft">
<vb:comment> Left Ad Code Below this Commented out line </vb:comment>
Left Ad Image/Code 1 needs to be placed here, no larger than 260 pixels in height.
<vb:comment> Left Ad Code Above this Commented out line </vb:comment>
</div>
<div id="innovativeadright">
<vb:comment> Right Ad Code Below this Commented out line </vb:comment>
Right Ad Image/Code 2 needs to be placed here, no larger than 260 pixels in height.
<vb:comment> Right Ad Code Above this Commented out line </vb:comment>
</div>
</div>
</div>
</li>
</vb:if>
</vb:if>
<vb:comment>End of Ads After First Post</vb:comment>
What would you modify to make a change? This line:
Code:
<vb:if condition="$show['guest'] OR $show['member']">
To show it only to guests make it this:
Code:
<vb:if condition="$show['guest']">