How to hide Header Ads in a post page

Posted in: Newspaper
Post count: 24

Hi
I am facing having 4 different adsensese in a post. Header Ads + Article top ads + Article inline ads + Article bottom ads.
Is there any solution to hide Header Ads only in post page?
Thanks

Post count: 7909

Hi,

You can add a condition to not display header ad on post pages – http://screencast.com/t/qVuKcRwVa
Replace ads.php(make a backup of your current file) content with:

<div class="td-header-rec-wrap">
    <?php
if (!is_single()) {
    // show the header ad spot
    echo td_global_blocks::get_instance('td_block_ad_box')->render(array('spot_id' => 'header'));
}?>
</div>

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.