Hi,
You can use css to hide them only on that post:
Take the post ID: http://screencast.com/t/Wb7Vnhe1BufG
Use class .postid-xxx to hide: http://screencast.com/t/ZsS1RInIcBn
.postid-xx .td-a-rec.td-a-rec-id-content_bottom{
display: none;
}
Thanks!
Hi,
Yes, you have to add it in Custom Css from Theme Panel and save: http://screencast.com/t/MWjAbBCPASJr
Instead of xx add your post ID like I said above. Also try the code with !important like this:
For top ad:
.postid-xx .td-a-rec.td-a-rec-id-content_top{
display: none !important;
}
For inline ad:
.postid-xx .td-a-rec.td-a-rec-id-content_inline{
display: none !important;
}
For bottom ad:
.postid-xx .td-a-rec.td-a-rec-id-content_bottom{
display: none !important;
}
Hope this helps!
-
This reply was modified 11 years by
Alin [tagDiv].
-
This reply was modified 11 years by
Alin [tagDiv].
Ah excellent! I just realized your first message listed for top and I was trying to hide inline 🙂 works now. Thank you Alin. Do you recommend any plugin that allows for me to insert CSS directly when creating a post compatible with your theme? No biggie just a thought.