
01-08-2013, 04:08 AM
|
 |
|
|
Join Date: Jan 2013
Location: Jordan
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by v123shine
I want to display Ads in All category, but i do not want to display Ads for specific categories & all threads under it, Even for guests also.
I dont want ads display in this category: 7, 33, 145, 87
I using the below code but Didn't worked for me.
PHP Code:
<if condition="$show['guest'] && !in_array($foruminfo['forumid'], array(7,33,145,87))">
This is Ads
</if>
Please help me!
Thank you
--------------- Added [DATE]1357339292[/DATE] at [TIME]1357339292[/TIME] ---------------
Using this : $GLOBALS['forumid']
Solved 
|
try this one:
Code:
<if condition="$forumid != 7 AND $forumid != 33 AND $forumid != 145 AND $forumid != 8">your Ad</if>
|