Quote:
Originally Posted by EquinoxWorld
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. 
|
I told you to use
Parse template hook for this code
PHP Code:
ob_start();
require_once('test.php');
$php_include .= ob_get_contents();
ob_end_clean();
the hook for other code is which u were using earlier.