The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
forum-specific advertising code
Right now, I'm doing this by creating multiple templates....
template1 is the standard with google template2 adds intellitxt template3 is google/intellitxt free I presently control ad display for usergroups with: <if condition="is_member_of($bbuserinfo, 1,2,3,4,6,29)">adcode</if> I'd also like to control ad display by forum, and am experimenting with some code that Dismounted has posted in the past... <if condition="$foruminfo['forumid'] == 8"> adcode <else /> altadcode </if> This works perfectly for the single forumid listed, however, I've yet to figure out how to apply the <if> statement to multiple forumid's....ie: <if condition="$foruminfo['forumid'] == 8,27,56,4"> thanks for any assistance! |
#2
|
|||
|
|||
Code:
<if condition="in_array($foruminfo['forumid'], array( 8,27,56,4))"> |
#3
|
|||
|
|||
awesome....is there also a condition option for not-equal (ie show in all except the following?)
thanks!! --------------- Added [DATE]1201790708[/DATE] at [TIME]1201790708[/TIME] --------------- <if condition="in_array($foruminfo['forumid'], array( 90,111))"> <else /> adcode </if> should work....forumid 90 and 111 will NOT see the adcode, and all the others will |
#4
|
||||
|
||||
I entered this
Code:
<if condition="in_array($foruminfo['forumid'], array( 90,111))"> <else /> adcode </if> Forum home isnt a ForumID is it, if so what is the id. |
#5
|
||||
|
||||
<if condition="(in_array($foruminfo['forumid'], array( 90,111))) AND (THIS_SCRIPT != index)">
something like that should work. |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|