Version: 1.00, by Beermonster
Developer Last Online: Sep 2023
Version: 3.0.1
Rating:
Released: 05-27-2004
Last Update: Never
Installs: 47
Supported
Rotating Forum Banners
Tested on vBulletin 3.0.1
I have seen this sort of hack requested many times so I thought I would spend a bit of time and create one.
This will add upto 3 rotating image banners with links on each of your forums using your AdminCP.
The orignal slide show script came from Dynamic Drive
Some values you can change in the script are for pause between next image, animation speed and image size, just find:
Code:
var trans_width='480px' //slideshow width
var trans_height='60px' //slideshow height
var pause=5000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)
var degree=10 //animation speed. Greater is faster
If you use this please click install, thanks
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
A better way to have more banners would be to use a MULTI-LINE form box. Two of them. One for the Image Link and one for the URL. That way they can correspond to eachother and you can add as many as you need or dont need.
Perhaps someone can modify this hack to use that kind of system.
A better way to have more banners would be to use a MULTI-LINE form box. Two of them. One for the Image Link and one for the URL. That way they can correspond to eachother and you can add as many as you need or dont need.
Perhaps someone can modify this hack to use that kind of system.
I looked in to this at first, but the only problem is that the info is stored in mysql so you would still have to create the tables in the first place, and also I'm not sure how you would call the data from the text box, and also you will have to add more phrases, it's not jsut a case of a simply modification, it needs totaly rewriting, but your free to give it ago
Table:
ALTER TABLE `forum` ADD `rbanner1` VARCHAR( 50 ) NOT NULL AFTER `description` ;
ALTER TABLE `forum` ADD `rbannerlink1` VARCHAR( 250 ) NOT NULL AFTER `rbanner1` ;
ALTER TABLE `forum` ADD `rbanner2` VARCHAR( 50 ) NOT NULL AFTER `rbannerlink1` ;
ALTER TABLE `forum` ADD `rbannerlink2` VARCHAR( 250 ) NOT NULL AFTER `rbanner2` ;
ALTER TABLE `forum` ADD `rbanner3` VARCHAR( 50 ) NOT NULL AFTER `rbannerlink2` ;
ALTER TABLE `forum` ADD `rbannerlink3` VARCHAR( 250 ) NOT NULL AFTER `rbanner3` ;
ALTER TABLE `forum` ADD `rbanner4` VARCHAR( 50 ) NOT NULL AFTER `rbannerlink4` ;
ALTER TABLE `forum` ADD `rbannerlink4` VARCHAR( 250 ) NOT NULL AFTER `rbanner4` ;
I'm really not sure why you are posting all these bit's of code, it looks like you have added some lines to some parts but not to others, you have added rbanner4 to the mysql but nothing to the FORUMDISPLAY
If it's not showing in the AdminCP then without looking I'm not sure and seen that I don't have axx to it there's no point in posting the link
One of the reasons it might not be showing is that you have something that prefixes the tables, like vb3_table name