Jump to content

way to make ads NOT show only on certain pages?


SJ77

Recommended Posts

If you simply want to hide it, you can target your advertisements by page module and page controller

example, hide your advertisement on forums

body[data-pagemodule="forums"] #your_advertisement_id{
	display: none;
} 

 

If you want your advertisement not to generate on certain pages then you have to use " Define your own locations  " for your advertisement and manually pasting your advertisement somewhere like in globalTemplate 

example, show your advertisement everywhere but not forums

{{if request.module == 'forums'}}
{{else}}
	{advertisement="KEY"}
{{endif}}

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...