Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Template Modifications
UKBL ~ Rotation Iframe adverts Details »»
UKBL ~ Rotation Iframe adverts
Version: 1.00, by UKBusinessLive UKBusinessLive is offline
Developer Last Online: Feb 2012 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.7.5 Rating:
Released: 03-20-2009 Last Update: Never Installs: 3
Template Edits
Re-useable Code Translations  
No support by the author.

UKBL ~ Rotation Iframe adverts


Now you can add timed rotational adverts 468 x 60 Banners or any other size you want, anywhere on your forums, You can add it in more than one template and have as many different rotating ads as you want.



This hack works in two parts, some of the code is written by Dyamic Drive so please keep the credits intact if you use.

Installation

1. Download the iframeads.zip

2. Firstly open the advertiser.txt file in notepad and find the following

Code:
<iframe id="tickermain" src="http://ukbusinesslive.co.uk/forum/adverts.htm" width=486 height=60 marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=no></iframe>
Then change My forum url for yours and also the size of the ads that you'll be showing (I've shown it in red)

Thats all you need to do on that file so now save your edits and open the adverts.htm file in notepad.

You'll see the first part of the code is like this

Code:
<script language="JavaScript1.2">

//IFRAME Advertiser by UKBL2009

//Rotation code by Dynamic Drive, please leave intact if you use.

//configure delay between changing adverts (5000=5 seconds)
var delay=5000

var ie4=document.all

var curindex=0
var totalcontent=0

function get_total(){
if (ie4){
while (eval("document.all.content"+totalcontent))
totalcontent++
}
else{
while (document.getElementById("content"+totalcontent))
totalcontent++
}
}

function contract_all(){
for (y=0;y<totalcontent;y++){
if (ie4)
eval("document.all.content"+y).style.display="none"
else
document.getElementById("content"+y).style.display="none"
}
}

function expand_one(which){
contract_all()
if (ie4)
eval("document.all.content"+which).style.display=""
else
document.getElementById("content"+which).style.display=""
}

function rotate_content(){
get_total()
contract_all()
expand_one(curindex)
curindex=(curindex<totalcontent-1)? curindex+1: 0
setTimeout("rotate_content()",delay)
}

window.onload=rotate_content

</script>

<BODY bgColor=#FFFFFF>
The only bit you need to change is the very begining

Code:
//configure delay between changing adverts (5000=5 seconds)
var delay=5000
This is the delay for each ad, if you want to change the time that each add shows edit the Var delay, so if you wanted each ad to show for 3 seconds, you'd change this value to 3000

now we come to the addition of the Advertising banners.

First you need to do a little bit of work, making each banner clickable and pointing to an url, so for this we'll use a simple bit of code below

Code:
<a href="URL GOES HERE"><img src="picture.jpg"></a>
Its really easy, You just add the url to the front of the code and the Image url goes in the second part, Do that for all your adverts and you should get something like this...

Code:
<a href="http://ukbl.co.uk" target="_blank"><img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/topHeader.gif" border=0></a>
Notice two additions to the code also, First is the target="_blank" this makes sure that the ad opens up in a new window, otherwise we'll have the url opening in a 468x60 window, Not good at all, so make sure this remains, after each url

Secondly, we have added border=0 to the end of the Image url, This prevents a url border from showing, so make sure this is added to each advert code.

Once you've made all your ads clickable then ad them to the end of the adverts.htm code like my example below

Code:
<!--ADD YOUR ADVERTISEMENT CONTENT BELOW, by wrapping each one inside a <DIV> as shown below.-->
<!--For each DIV, increment its ID attribute for each additional content (ie: "content1", "content2" etc)-->


<div id="content0" style="display:''">

<!-- ADD clickable banner code ADVERT #1 HERE--------------------->

<a href="http://ukbusinesslive.co.uk/forum" target="_blank"><img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/UKBLForumpic.jpg" border=0></a>

<!-- END ADVERT #1----------------->

</div>

<div id="content1" style="display:none">

<!-- ADD clickable banner code ADVERT #2 HERE--------------------->

<a href="http://ukbl.co.uk" target="_blank"><img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/topHeader.gif" border=0></a>

<!-- END ADVERT #2----------------->

</div>

<div id="content2" style="display:none">

<!-- ADD clickable banner code ADVERT #3 HERE--------------------->

<a href="http://ukbusinesslive.co.uk/forum" target="_blank"><img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/30dollarmenus.png" border=0></a>

<!-- END ADVERT #3----------------->

</div>

<div id="content3" style="display:none">

<!-- ADD clickable banner code ADVERT #4 HERE--------------------->

<a href="http://ukbusinesslive.co.uk" target="_blank"><img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/banner11.jpg" border=0></a>

<!-- END ADVERT #4----------------->

</div>
I've only shown 4 adverts but if you add another block befor the end </div> like below, you'll be able to add unlimited ads

Code:
<!-- ADD clickable banner code ADVERT #1 HERE--------------------->

<a href="http://ukbusinesslive.co.uk/forum" target="_blank"><img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/UKBLForumpic.jpg" border=0></a>

<!-- END ADVERT #1----------------->
Thats its, just save the file and we're ready to upload.

A quick tip to see if your adverts.htm file is working, just click on it in your desktop and you'll see your ads rotating

Now, for the uploads

Firstly, The adverts.htm file which you've just added your ads to, need to go into the forum root directory, once uploaded you can test it by going to http://yourforum.com/adverts.htm

You should see your banners rotating, if so then alls well

Next we need to go to our admin cp and in your styles header, we need to add the small call up file which we saved as advertiser.txt. So open up this file again in notepad and copy and paste to the end of your styles Header.

Now when you go to your forum you should see your ads rotating nicely.

You can be more adventurous and add the call up code to any template you want, each time your adds will show anywhere in your forums, You can of course duplicate the code and with an additional .htm code on your forums root, you'll be able to have more banners showing, different sizes etc..

Hope you enjoy this simple addition

If you click Install then i'll support you 100%


If you've installed this on your site, drop me a PM and i'll add it to the Live Demo at the begining of this post

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 03-21-2009, 12:14 PM
UKBusinessLive UKBusinessLive is offline
 
Join Date: Sep 2008
Location: Essex, United Kingdom
Posts: 1,637
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Reserved
Reply With Quote
  #3  
Old 03-21-2009, 05:32 PM
ArnyVee's Avatar
ArnyVee ArnyVee is offline
 
Join Date: Mar 2008
Posts: 944
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This looks like something that I'll be all over soon!

I've got a few modifications (and uninstallation of others) to do before I get to this one. But, it's on my list
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:56 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.10101 seconds
  • Memory Usage 2,223KB
  • Queries Executed 18 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (7)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (3)post_thanks_box
  • (3)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)post_thanks_postbit_info
  • (2)postbit
  • (3)postbit_onlinestatus
  • (3)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete