Remove ads in certain post/page

Posted in: Newsmag
Post count: 2

How can I remove ads from certain post/pages?

Many thanks
-Daniel

Post count: 6535

Hi

To remove the ads in specific post/pages you need to ad a condition in td_block_ad_box.php
http://screencast.com/t/8lqAJQDddO

if (is_single(134) || is_page(44)) {
return;
}

Use is_single() for post is_page() for pages. To get the post/page id follow this link: http://screencast.com/t/zXmGYcsp

Let me know how it goes!
Thanks!

Post count: 2

Thank you Andrei!

-Daniel

Post count: 33

This is great! Used the same principle for removing ads for users with a particular (custom) role. Thank you!

Post count: 6535

Hi

Glad I could help.
Thanks for your kind feedback and for your message.
Have a good day!

Post count: 171

Great tip. You can creat an aditional sidebar and use it on this posts to secure no more ads on certain articles.

By the way, is there a way to prevent ads appearing on the BBpress plugin? Google is picky with that kind of content.

Post count: 22421

Hello,

You can use the same method as above and use the is_bbpress() function. this will detect if the page is a bbpress page and filter the content as you set the condition in the code.

Thank you!

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