
08-28-2018, 09:48 PM
|
 |
|
|
Join Date: Apr 2006
Location: Michigan
Posts: 2,310
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by MarkFL
THIS_SCRIPT is a constant that stores the name of the script being run, for external scripts that define it. So, use Tim's code exactly as is to prevent ads from displaying on the login script.
If you wish to stop ads on multiple scripts, then you could use something like:
HTML Code:
<if condition="!in_array(THIS_SCRIPT, array('login', 'script2', 'script3',...))">
Your ad code
</if>
Replace 'script1' and 'script2' with the other scripts on which you want to prevent ads. You can list as many as you desire.
|
|