Hello all, perhaps someone can help me here. I have been able to add left and right columns using modules but I am having a problem on some pages. The pages that I can't get them to load is New Post... if there
IS NOT any new pages. I was told that it probably is an error template, I tried making the changes to functions.php below
I put this in the beginning of the file:
PHP Code:
define('VBA_PORTAL', true);
define('VBA_PAGE', 'include');
Find this:
PHP Code:
eval('print_output("' . fetch_template('$templatename') . '");');
Replace with:
PHP Code:
eval('$HTML = "' . fetch_template($templatename) . '";');
print_portal_output($home, $HTML);
Now after I do this it show up like the attachment.... Anyone know how I can fix this so I can get my left and right column to show up in my error pages?
Thanks to all the reply
Coll