MyBB Community Forums

Full Version: Hooks ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to know the hooks needed to place any thing (image / text) on forumbit_depth2_forum area. I lost how to do that. Can any one suggest me the hook ?

Screeny;
[attachment=20524]

Help would be appreciated.
I know this darkly. I asked to where I could find a hook for "forumbit_depth2_forum" area. For specific, I've edited the post above to see what I asked.

Thanks for your reply nonetheless Smile
Hooks are for core files and not templates. :p
i believe that you need to look in the build_forumbits() function of \inc\functions_forumlist.php and use

$plugins->run_hooks_by_ref("build_forumbits_forum", $forum);

to add an array key to the $forum variable which you could then output in your template.
Tried that too, but didn't worked.
that does work. download the forum cleaner plugin and look at that. it uses that hook I mentioned to add a key/var to the $forum array and uses that new variable it the specific template you are asking about.

OK, I've pm-ed you the code.
If you've time kindly take a peek look on that.
Thank You.