Banners on different categories (manual PHP modifcation)
Have been trying to do this for a few hours and no answers really did the trick.
This is how I got around it, probably not the easiest way but most functional in my eyes.
Go to your theme-header.php and make a backup before you play with it...
Find
<?php appthemes_header_ad_468x60();?> Its on line 105
Replace it with this
<?php if (is_tax('ad-category', 'AD CATEGORY SLUG')) { ?>
<a href='TARGET URL'><img src='BANNER IMAGE URL' border='0'></a>
<?php } elseif (is_tax('ad-category', 'AD CATEGORY SLUG')) { ?>
<a href='TARGET URL'><img src='BANNER IMAGE URL' border='0'></a>
<?php } else { ?>
<a href='TARGET URL'><img src='BANNER IMAGE URL' border='0'></a>
<?php } ?>
Replace the
bold text with your addresses
To add banners to more than 2 categories just in repeat the elseif part.
The ELSE at the end will determine the default banner to display if the IF and ELSEIF do not overwrite it.
Hope this helps some people