MyBB Community Forums

Full Version: Please, forum Avatars mod
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi, please, I need something like this...

Thank
I don't think images tags can be used in forum names, your best bet would be editing the template files found on the edit template part of the admin panel.You will have to do something like:
change: {$forum['name']} to <img src=yourimg>{$forum['name']}
that would do it to all forums. for a specific:
in php add:
if($forum['fid'] == '$the_forum_you_want'){
$name = <img src=yourimg>$forum['name'];
}
then {$name} would print the forum name and the image you want.

Somebody please correct me if I'm wrong as I'm kinda new to PHP.
Plaese, help of mod ForumAvatars (0.1.3) para mybb 1.2.1

Thank
That modification won't work with MyBB 1.2. I will update it for 1.2 tomorrow Smile Just bump the thread if I've forgotten (in about 24 hours of this post)
thanks Tikitiki - Sexiest Developer so much.i was looking this plugin long time ago
You can achieve this with an IMG html tag in the description.
and i need it for mybb 1.2.2
Please, mod ForumAvatars (0.1.3) for mybb 1.2.1
Try this in the forum description or title.

<img src="images/icon_name.gif" alt="" border="0" align="left" />

Not that difficult really.
I've got the plugin already partially working anyway Smile
Pages: 1 2