MyBB Community Forums

Full Version: Add quick reply
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well on my forum if you go to a thread, there is no quick reply.
http://www.pakistanispirit.com/index.php

[Image: d64x.png]

How do I fix it?
Admin CP -> Configuration -> Settings -> Show Thread Options

Look for the setting Show Quick Reply Form (should be 7th down from top).
(2014-02-15, 07:47 PM)Starpaul20 Wrote: [ -> ]Admin CP -> Configuration -> Settings -> Show Thread Options

Look for the setting Show Quick Reply Form (should be 7th down from top).

I've ticked yes for show quick reply form but still not shown Sad
Have you checked your account settings? User CP -> Edit Options -> find Show the quick reply box on the view thread page. and check it if it isn't.
(2014-02-15, 07:55 PM)Starpaul20 Wrote: [ -> ]Have you checked your account settings? User CP -> Edit Options -> find Show the quick reply box on the view thread page. and check it if it isn't.

wow, thanks working now. Tho is there anyway to enable this for every user?
If you have access to the SQL database, you can run this query:
UPDATE `mybb_users` SET `showquickreply` = '1' WHERE `showquickreply` =0;

otherwise you'll need to edit every user in the Admin CP.
(2014-02-15, 08:10 PM)Starpaul20 Wrote: [ -> ]If you have access to the SQL database, you can run this query:
UPDATE `mybb_users` SET `showquickreply` = '1' WHERE `showquickreply` =0;

otherwise you'll need to edit every user in the Admin CP.

oh, I guess I'll have to edit every user!