The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
How to rotate various advertisements?
Hello,
I am using the advertisement hooks and also widgets to display advertisements in my forum. However, it only allows me to display one static ad. There is no option that I can see to rotate multiple ads based on a certain amount of time displayed. Does anyone know how I might go about implementing this idea? There was a mod for older versions of vB (back before the cms came along), that would do this. I can't seem to find one for vb4. Example: I have ads A, B, and C. I want to display each ad for 5 seconds, then switch to the next ad. Thanks! |
#2
|
||||
|
||||
I use Rotating Banner System , though I don't think it rotates banners without a page refresh (which would cause load even for idle users).
|
#3
|
|||
|
|||
Simple script for rotating banners. This rotates the banners by each refresh of the page.
You can place this in the advertisement area. I agree with Videx. Rotating every 5 seconds isn't wise to do. HTML Code:
<script language="JavaScript"> images = new Array(4); images[0] = "<a href = 'http://www.LinkToBannersWebsite.com target=_new><img src='http://www.PlaceWhereTheBannerIsStored.gif' alt='Hover text'></a>"; images[1] = "<a href = 'http://www.LinkToBannersWebsite.com target=_new><img src='http://www.PlaceWhereTheBannerIsStored.gif' alt='Hover text'></a>"; images[2] = "<a href = 'http://www.LinkToBannersWebsite.com target=_new><img src='http://www.PlaceWhereTheBannerIsStored.gif' alt='Hover text'></a>"; images[3] = "<a href = 'http://www.LinkToBannersWebsite.com target=_new><img src='http://www.PlaceWhereTheBannerIsStored.gif' alt='Hover text'></a>"; index = Math.floor(Math.random() * images.length); document.write(images[index]); </script> |
#4
|
|||
|
|||
You can also use Google's Ad Manager or install OpenX on your hosting box.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|