The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
How To Add Different Banners For Different Forum IDs
Many people have asked for "Different Banners For Different Forum IDs".
Admin Control Panel > Styles & Templates > Edit Template Forum Display or Showthread Display Add Below $navbar Here is how to do it using If conditional :- $spacer_open <div style="padding:0px 0px $stylevar[cellpadding]px 0px"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="thead" align="left">Sponsored Banners</td> </tr> <tr> <td class="alt1" align="center"> <if condition="in_array($forumid, array(a,b,c))"> <p align="center"> <img border="0" src="abc.jpg" width="234" height="60"></p> </if> <if condition="in_array($forumid, array(d,e,f))"> <p align="center"> <img border="0" src="def.jpg" width="234" height="60"></p> </if> </td> </tr> </td> </tr> </table> </div> $spacer_close -------------------------------------------------------- To Change Different Forum IDs Change a or b or c of If conditional to Forum ID <if condition="in_array($forumid, array(a,b,c))"> Example If Forum ID = 16 and nothing else :- <if condition="in_array($forumid, array(16,0,0))"> If Forum ID = 16 and 17 and 18 :- <if condition="in_array($forumid, array(16,17,18))"> ------------------------------------------------------- To Display Banner A abc.jpg for Forum ID = 16 ONLY and Banner B def.jpg for forum ID = 17 ONLY. Change If Conditional and Add 1 more If Conditional (And just keep adding If Conditional for different Forum IDs banners) See Below <if condition="in_array($forumid, array(16,0,0))"> <p align="center"> <img border="0" src="abc.jpg" width="234" height="60"></p> </if> <if condition="in_array($forumid, array(17,0,0))"> <p align="center"> <img border="0" src="def.jpg" width="234" height="60"></p> </if> -------------------------------------------------------------- Hope This Will Save You Time Searching How to Add Different Banners To Different Forum IDs Vincent Tan www.singaporecarsforum.com/index.html |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|