This is how i made mine show up on my vbadvanced page and no other page...
In includes/vba_cmps_include_bottom.php
Find this:
Code:
// ########################### Strip Body Tag #################################
function strip_body_tags($content)
{
global $header, $navbar, $footer, $headinclude;
I changed mine to this:
Code:
// ########################### Strip Body Tag #################################
function strip_body_tags($content)
{
global $header, $navbar, $welcomeheaders, $footer, $headinclude;
Also in the same file a few lines down find:
Code:
return str_replace(array($header, $navbar, $footer, $headinclude, '</body>', '</html>') , '', $content);
I changed mine to this:
Code:
return str_replace(array($header, $navbar, $welcomeheaders, $footer, $headinclude, '</body>', '</html>') , '', $content);
Also in the same file a few lines down find:
Code:
global $pages, $stylevar, $headinclude, $header, $footer, $vbulletin, $vbphrase, $stylevar, $show, $pmbox, $vba_options, $vba_style, $navbar, $cusid, $_REQUEST, $gobutton, $pagetitle, $pagecache, $db;
I changed mine to this:
Code:
global $pages, $stylevar, $headinclude, $header, $footer, $vbulletin, $vbphrase, $stylevar, $show, $pmbox, $vba_options, $vba_style, $navbar, $welcomeheaders, $cusid, $_REQUEST, $gobutton, $pagetitle, $pagecache, $db;
Then i went into my admin cp and went to Styles & Templates and from there i went to my adv_portal template and looked for
And after i added $welcomeheaders so it looks like this
Code:
$header
$navbar
$welcomeheaders
Note I also did the steps in the Installation Instructions in the FORUMHOME template.
This worked for me and it will only display it on the portal page and no other page in your forum.