Jump to content

way to make ads NOT show only on certain pages?


SJ77

Recommended Posts

Posted

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}}

 

Posted

How about a way to make it not show in pages but only specific pages?

{{if request.module == 'pages' and request.something = 'mypagename'}} {{else}} {advertisement="KEY"} {{endif}}

almost there?

Posted

warp your advertisement in a div 

MaxthonSnap20170220025805.png.7d91a8524e9af9968fcf5d9423787833.png

<div id='adver'>
  
  your advertisement  
  
</div>

and add this to custom.css

body[data-pagemodule="downloads"] #adver{
    display: none;
}

 

Posted

How about a way to make it not show in pages but only specific pages?

{{if request.module == 'pages' and request.something = 'mypagename'}} {{else}} {advertisement="KEY"} {{endif}}

almost there?

Archived

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

  • Recently Browsing   0 members

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