Thanks for trying it out.
The only other option that might work (depending on how the other mods use the same hook) is to change a section of the
/dbtech/forumtabs/hooks/process_templates_complete.php file.
Find this line:
PHP Code:
$template_hook['forumhome_above_forums'] .= $templater->render();
Replace with:
PHP Code:
$template_hook['forumhome_above_forums'] = $templater->render() . $template_hook['forumhome_above_forums'];
Remember this will need changing each time there's an update. I'll see if there's a way of forcing this in the mod, but part of it will depend on the way that the other mods use the hook as I mentioned above.
I wish I could suggest using another hook, but the problem is that there is no other hook fitting where you want, as all three mods use the same hook code. I hope that makes sense.
Let me know how you get on.
Matt