Quote:
Originally Posted by Hippy
* Update
For those of you that still use this mod...
and you would like the gamercard to display on your forum home with out editing your headerincudes template
today is your lucky Day...
first ) go to your Admincp >Plugins & Products > Plugin Manager
there is 2 things you need to do..
first we are going to create a new plug in...
this will fix the postbit link so mouse over will display the gamercard
Code:
gXBL: Show_Post gXboxLive
Hook showthread_start
Title gXBL: Show_Post
Execution Order 5
Plugin PHP Code $templater = vB_Template::create('gxbl_headinclude');
$headinclude .= $templater->render();
Plugin is Active yes
Save
second
this will allow the gamercard to render on mouse over the users name
and we are still in plug in manager
find and open up
gXBL: Forum Home Stats
Next
click edit
replace the Plugin PHP Code with
Code:
if(!defined('GXBL_FUNC'))
include "./includes/functions_gxboxlive.php";
if(function_exists('gxbl_has_access') && gxbl_has_access() && $vbulletin->options['gxbl_show_stats'] && $vbulletin->options['gxbl_forumhome'])
{
$templater = vB_Template::create('gxbl_headinclude');
$headinclude .= $templater->render();
($hook = vBulletinHook::fetch_hook('gxbl_stats')) ? eval($hook) : false;
$template_hook['forumhome_below_forums'] .= $gxblstats;
}
Enjoy Guys...
Regards Hippy
|
is their a demo or a picture for the effect?