1) Unzip and overwrite the 'banner03_468x60.gif' file with your own banner (keeping the same name, obviously). Then upload the files to your site, keeping the same directory structure. (http://www.sitename.com/images/banne...r03_468x60.gif)
In the navbar where ever you want the link to appear.
Right now it only shows one banner but you can manually add more by editing the LinkMe template. Soon I'll try and make it where you can add banners via the admincp. Enjoy.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Thanks for this...it helped me figure out how to get my old LinkMe hack working on 3.5. It may not be the right way but it friggin works. Woot.
PHP Code:
<?php
// ######################## SET PHP ENVIRONMENT ########################### error_reporting(E_ALL & ~E_NOTICE);
// ##################### DEFINE IMPORTANT CONSTANTS ####################### // change the line below to the actual filename without ".php" extention. // the reason for using actual filename without extention as a value of this constant is to ensure uniqueness of the value throughout every PHP file of any given vBulletin installation.
define('THIS_SCRIPT', 'LinkMe');
// #################### PRE-CACHE TEMPLATES AND DATA ###################### // get special phrase groups $phrasegroups = array();
// get special data templates from the datastore $specialtemplates = array();
// pre-cache templates used by all actions $globaltemplates = array( // change the lines below to the list of actual templates used in the script 'LinkMe' );
// pre-cache templates used by specific actions $actiontemplates = array();
Thanks for this...it helped me figure out how to get my old LinkMe hack working on 3.5. It may not be the right way but it friggin works. Woot.
PHP Code:
<?php
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// ##################### DEFINE IMPORTANT CONSTANTS #######################
// change the line below to the actual filename without ".php" extention.
// the reason for using actual filename without extention as a value of this constant is to ensure uniqueness of the value throughout every PHP file of any given vBulletin installation.
define('THIS_SCRIPT', 'LinkMe');
// #################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array();
// pre-cache templates used by all actions
$globaltemplates = array(
// change the lines below to the list of actual templates used in the script
'LinkMe'
);
// pre-cache templates used by specific actions
$actiontemplates = array();