Quote:
Originally Posted by bringindaruckus
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
Do you know where I can put that code in the view.php file?
|
The section you mention is the part that says
PHP Code:
eval('print_output("' . WTgettemplate ................
in view.php. (There are 2 of them)
Yet I highly doubt that adding that code there will make it work for you. The instruction you quoted, looks like clashing with webtemplate's structure as a first impression.