Quote:
Originally Posted by Sherif
Try This:
PHP Code:
$templater = vB_Template::create('COTW_SIDEMENU');
$templater->register('php_include', $php_include);
$cotw_sidemenu = $templater->render();
vB_Template::preRegister('COTW_SOTW',array('cotw_sidemenu' => $cotw_sidemenu));
And
Plugin Hook: parse_templates
Code:
ob_start();
require_once('test.php');
$php_include .= ob_get_contents();
ob_end_clean();
|
Thanks for your reply Sherif, although still no results.
These are the plugins I am using.
hook parse_templates
PHP Code:
$templater = vB_Template::create('COTW_SIDEMENU');
$templater->register('php_include', $php_include);
$cotw_sidemenu = $templater->render();
vB_Template::preRegister('COTW_SOTW',array('cotw_sidemenu' => $cotw_sidemenu));
and
hook global_start
PHP Code:
ob_start();
require_once('test.php');
$php_include .= ob_get_contents();
ob_end_clean();
Then adding {vb:raw php_include} to my COTW_SIDEMENU template. Unfortunately still no results.