I would like a special menu to appear on the left side of the page that I created. In the vBadvanced instructions, it says to
Quote:
4. Now you will want to open your /forums/index.php file. In that file, right after the opening <?php tag, you will want to add this code:
define('VBA_PORTAL', true);
define('VBA_PAGE', 'include');
Note that if you changed the 'Page Identifier' setting for this page above then you will want to replace 'include' (marked in bold above) to whatever you used for the 'Page Identifier' option.
5. For the next step, you will want to search your file for the phrase "print_output" (without the quotes). In our example here, you would find the following code:
eval('print_output("' . fetch_template('FORUMHOME') . '");');
You will want to replace this with:
eval('$HTML = "' . fetch_template('FORUMHOME') . '";');
print_portal_output($home, $HTML);
As you can see, the main part that you should be concerned with is 'FORUMHOME'. When integrating other vBulletin pages or hacks with vBadvanced CMPS, you will want to replace whatever template name is in the "print_output" part of the code. Once you have done this, save and upload your file, and you're done.
|
In the view.php file, what do I edit to replace the
PHP Code:
eval('$HTML = "' . fetch_template('FORUMHOME') . '";');
with? Thanks in advance