Inserting ads under navigation in one category page

Posted in: Newspaper
Post count: 5

Hello,

I want to put banner ads at the bottom of the main navigation in one category pages and not visible in other categories, like this: http://www.screencast.com/t/XCZhoHZu

is it possible? please help, thanks.

Post count: 22421

Hello,

Custom ad positions and conditions must be added in the php files directly as our theme has no such options.
you can use a do_shortcode function and a is_category function to check for the category itself.
Here is an example: http://screencast.com/t/maoyrOlqc

 <?php if (is_category( 'Gadgets' )){
            echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');
        }; ?>

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.