Quote:
Originally Posted by Crimm
vB_Template:  reRegister(' TEMPLATE YOU ARE USING',array('php_include' => $php_include));[/code]
Step 2: You will have to figure out these two entries for yourself: LOCATION OF EXTERNAL FILE & Hook Location
To give you an example of what you should use is that if you want to display your external PHP file on your Forum's Home. Then replace these two with these values:
Hook Location with forumhome_start
TEMPLATE YOU ARE USING with FORUMHOME
|
I created this plug-in and activated it.
ob_start();
include('/home/mydomain/public_html/php/includes/ineverypost.inc.php');
$includedineverypost = ob_get_contents();
ob_end_clean();
vB_Template:

reRegister('postbit_display_complete ',array('includedineverypost' => $includedineverypost));
in vb 3.8.6, this was hooked to 'postbit_display_complete'
Now with VB4, there is no template for post_display_complete....
I tried "postbit" it did notwork. I tried other postbit related templates, this still did not work.
any help ??