I have a forum with some products such as (DownloadII, Gallery, classifieds, cms, ...)
I want to display the ads banners only in forum pages, I mean I want to hide the banners from some pages which is:
forum/downloads.php
forum/classifieds.php
gallery/index.php
/index.php
What is the (if statement) can I use?
__________________________
I have this code to hide the banners from the users profiles and it is working fine
Code:
<vb:if condition="THIS_SCRIPT!='member'">
I tried for example
Code:
<vb:if condition="THIS_SCRIPT!='downloads.php'">
but it is not working with me
Any hint?