MyBB Community Forums

Full Version: Add a reply with out quote button
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I know that it is possible to scroll to the bottom of the page and hit the "New reply" to comment with out a quote but is there any way to add that same button to the bottom of each users post next to the "edit, delete, reply, multiquote, ect." buttons.

Any help would help tremendously appreciated.

Thank you
In templates 'postbit' & 'postbit_classic', under post management button groups, find this

{$post['button_delete_pm']}

and add just after that:

<a href="newreply.php?tid={$tid}"><img src="{$theme['imglangdir']}/newreply.gif" alt="{$lang->post_reply_img}" title="{$lang->post_reply_img}" /></a>
(2013-01-06, 08:54 PM)effone Wrote: [ -> ]In templates 'postbit' & 'postbit_classic', under post management button groups, find this

{$post['button_delete_pm']}

and add just after that:

<a href="newreply.php?tid={$tid}"><img src="{$theme['imglangdir']}/newreply.gif" alt="{$lang->post_reply_img}" title="{$lang->post_reply_img}" /></a>

Hey Effone,
After doing this it also added a reply button to the private message screen. The problem is that when this is clicked it takes you to a screen that says something along the lines of "The specified thread does not exist."

[Image: KAeaN.jpg]

[Image: rCyPT.jpg]
OK. In that case, a very bad way but will effectively solve your problem:

Insert the provided code lines at the end of your "postbit_report" template.
It worked! Thank you!!!