Quote:
Originally Posted by FractalizeR
I don't see why because you can attach your own HTML to standard page via implementing threadmanage_getip hook.... So, you should contact original author. I am sorry.
|
Is there a way to put hook location in his template? That way we could use your product with his by adding hook location. But, how is hook location added?
EDIT:
I found the way. You need to edit IPinfo's ipinfo.php file. And just add hook location there.
Hook location looks like:
PHP Code:
($hook = vBulletinHook::fetch_hook('threadmanage_getip')) ? eval($hook) : false;
I added it end of file, so it looks like that:
PHP Code:
($hook = vBulletinHook::fetch_hook('threadmanage_getip')) ? eval($hook) : false;
$navbits = construct_ipinfo_nav($foruminfo, $threadinfo);
$navbar = render_navbar_template($navbits);
Now I have both products working fine.