Quote:
Originally Posted by Snookieboy
I assume I just need to find a way to add the hook "forumhome_start" to my vbAdvanced Portal page which is using index.php on my main site?
|
I haven't tested this. But it might work just to add this in the new index.php
PHP Code:
($hook = vBulletinHook::fetch_hook('forumhome_start')) ? eval($hook) : false;
Just include it as early as possible but after this:
PHP Code:
require_once('./global.php');
If it doesn't work I think you can just copy the code in the plugins at the 'forumhome_start' hook (the original and mine for v32 games) and use that code instead of the line above.
/SK