MyBB Community Forums

Full Version: Quick Reply - Admins only ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I made two accounts on my MyBB forum , why on my Admin account there is Quick reply option & on my normal account there isn't ? how I can enable Quick reply for the normal users too ? Huh Huh
Its an option in the User CP.
Any chance to force it for users ? like on this forum ???
In PHPMyAdmin run this query:
UPDATE mybb_users SET showquickreply=1;

You will need to edit the usercp_options template. Remove this part from the template:
<tr>
<td valign="top" width="1"><input type="checkbox" class="checkbox" name="showquickreply" id="showquickreply" value="1" {$showquickreplycheck} /></td>
<td><span class="smalltext"><label for="showquickreply">{$lang->show_quick_reply}</label></span></td>
</tr>
The Query will change for the current players only ?

and I changed the template as you siad , nothing really happened :s
If you set the default to 1 in PHPMyAdmin, new users would get it.