Log in

View Full Version : Disable Notice outside of Forums


darkblade25
10-09-2008, 05:42 AM
I have written a mod and I am including the navbar. But I do not want the notices to show up, even if they are guest. Is there a condition that I can compare to to check if the user is using the mod?

Lynne
10-09-2008, 03:26 PM
Is this mod on a new page? At the top of your page is a line like this:
define('THIS_SCRIPT', 'mypage');

So, put a condition around the notices:
<if condition="THIS_SCRIPT != 'mypage'>
notices shown if you aren't on mypage
</if>