Im trying to include an external php file in the VB template. I found this tutorial. I've added the following plugin with Global_Start as the Hook Location.
Plugins are Enabled in VB Options and the plugin itself is activated too.
Code:
ob_start(); include('/home/.../bh_includes/head_common.php');
$includedheader = ob_get_contents();
ob_end_clean();
And then I'm calling for {vb:raw includedheader} in the FORUMDISPLAY file.
Nothing is showing up in my template though.