Log in

View Full Version : How do I customise which banners to display on different forums


Fawlty Adder
05-01-2006, 01:30 PM
COuld someone please give me a hack/code that would let me

1. Display different banners on the Navbar for each forum..

i.e. if My VBsite has 5 forums, say A,B,C,D,E then I want forum A's Navbar to display banner 1 , forum B's Navbar to display banner 2 and so on

2. How do I display different banners on the top and bottom of each forum.. i.e. similar to point 1 except the location of the banner is the top or bottom of the forum

lastly how do I actually identify the forum I'm looking for within all the code.. will I be able to find the forum by its name? eg forum A ...or does VB assign it's own referencing to the forums on my site?

please help! I'm a complete newbie to VB and am finding all this code etc DEAD HARD! ... isn't there an Idiot's Guide book on this :cross-eyed:

thanks

:)

Xenium
05-01-2006, 02:15 PM
Simply put if and elseif clauses in forumdisplay template.

Eg:-
<if condition="$foruminfo[forumid] == XX ">
display certain banner image
</ if>


replace XX with the forum id.

patrickstar
08-06-2006, 08:03 PM
Simply put if and elseif clauses in forumdisplay template.

Eg:-
<if condition="$foruminfo[forumid] == XX ">
display certain banner image
</ if>


replace XX with the forum id.

several questions, that is all the code i need? and i take it i replace: "display certain banner image" with my banner image path?

i can place that anywhere in the template? and where will the banner show up. right now my google ad banner is at the top.

www.fitnessandbeyond.net

i would like to place a different banner for four forums.

thanks for any help.

Staxed
08-06-2006, 08:13 PM
so you are saying you want 4 different forums to have a specific banner in the navbar, and any other forums should have the google adsense?

if so...either post your navbar template or pm it to me and i'll take a look at it...

lightwave
08-06-2006, 08:54 PM
If you want different banners depending on which forum your users are in: just add this code:

<img src="http://www.site.com/$foruminfo[forumid].jpg">

Just replace the url with the forum id.

For exmaple, save banner for forum id 3 to 3.jpg or whatever you want.

Freesteyelz
08-08-2006, 03:35 AM
<img src="/forum/images/banners/$foruminfo[forumid].jpg" alt="" />


:)

patrickstar
08-08-2006, 06:20 PM
so you are saying you want 4 different forums to have a specific banner in the navbar, and any other forums should have the google adsense?

if so...either post your navbar template or pm it to me and i'll take a look at it...

yes i pm'd you my navbar template, i appreciate the help.