Logician-
Sorry for bugging you about this, but in the vbadvanced instructions, it says that if you want to view modules on a page such as one created by your hack, we have to search for something like this:
PHP Code:
eval('print_output("' . fetch_template('FORUMHOME') . '");');
then replace it with something like this:
PHP Code:
eval('$HTML = "' . fetch_template('FORUMHOME') . '";');
print_portal_output($home, $HTML);
Then the instructions say
Quote:
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.
|
Do you know where I can put that code in the view.php file?