Hi Everybody,
I have just setup my new site at www.toolsearchit.co.uk but i am having problems with the layout on banners i am using free banner manager and i load the banners via javascript but i have put the javascript in a new file called banner_right.php and called banner_right.php from /html/products.php but I am getting duplicate banners as there is only one group in banner_right.php.
What i would like to know is what file should i call the banner_right.php from so i don't get duplicate banners from the same merchant.
<?php
if (file_exists("html/right-bar.php")) require("html/right-bar.php");
?>
I have loaded the banners with single javascript code in the banner_right.php which load the banner group but because i have called the banner_right.php from /html/searchresults.php with this code below but of coarse doing it this way loads the banner code on every single listed product so I wanted to know how do I create a column right so i can load banners with search results with out creating duplicate content. I hope you understand or maybe i am looking at this the wrong way.I am using html rotate just a free cgi html banner rotation script.
Thanks Darren
<?php
if (file_exists("html/right-bar.php")) require("html/right-bar.php");
?>
Hi Darren,
I understand what you want to do now. There some additional files you can create that will be called before and after the search results HTML, so you can use these to create the column you need to display the banner code on the right, just like the demo site displays AdSense on the following page:
http://www.webpricecheck.co.uk/merchant/Advanced-MP3-Players/
To do this, create the following files in your html/ directory:
user_searchresults_before.php:
<style type='text/css'>.right {float: right;}</style>
<div class='right'>
.... YOUR BANNER HTML OR PHP INCLUDE HERE ....
<div>
</div>
user_searchresults_after.php:
</div>
Hope this helps!
Cheers,
David.
Hi Darren,
I'm afraid I'm not familiar with the banner manager you are using so I can't be sure as to why it is serving duplicate banners. Can you provide a little more information as to what banner_right.php does in order to choose a banner and i'll try to help...
Thanks,
David.