MyBB Community Forums

Full Version: Nick in quick reply
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!

Please, help me to find a special modification. Nick in quick reply. If you click on users nickname, it puts in q. reply textarea:
[b]nick[/b],

I can't rewrite vBulletin plugin (in attach) =(

Thanks! And sorry for my bad language! =)
what about a license of this vbull plugin ?
The MyBB Profile Link is hardcoded, you can't do it with only template edits.

If you hard-code the hard-coded string (Toungue), you will be changing the link in ALL the forum; not only in showthread.
(2009-06-17, 12:14 AM)-=snAke=- Wrote: [ -> ]what about a license of this vbull plugin ?
This plugin developed by one user from Russian vbull community. Plugin is free.

(2009-06-17, 12:33 AM)Aquilez Wrote: [ -> ]The MyBB Profile Link is hardcoded, you can't do it with only template edits.

If you hard-code the hard-coded string (Toungue), you will be changing the link in ALL the forum; not only in showthread.
Ok, thanks. Sad

But it is very good idea for new plugin Smile
in templates find:
<img src="{$mybb->user['avatar']}" alt="{$mybb->user['username']}" title="{$mybb->user['username']}" {$avatar_width_height} />

and change to:

<a href="javascript:clickableEditor.performInsert('[b]{$post['username']}[/b], ');"><img src="{$mybb->user['avatar']}" alt="{$mybb->user['username']}" title="{$mybb->user['username']}" {$avatar_width_height} /></a>

it can be in different places(example, if u use plugin "framed avatar").
Hi all!
Any suggestion else?