Knowledge Base

Display Quick Reply by default in prosilver
Article ID: 915
Written By: stevemaury
Written On: Tue Nov 17, 2009 10:28 pm
Description: How to have the Quick Reply window appear in a topic, rather than having to click the Quick Reply button.
link to this article on phpbb.com: Select All
[kb=display-quick-reply-by-default-in-prosilver]Display Quick Reply by default in prosilver[/kb]
link to this article on your own board: Select All
[url=http://www.phpbb.com/kb/article/display-quick-reply-by-default-in-prosilver/]Knowledge Base - Display Quick Reply by default in prosilver[/url]

Quick Reply is a new feature in version 3.0.6.

If Quick Reply is enabled in Post settings and in Forum settings, prosilver displays a "Quick Reply" button, which must be clicked to open the Reply window. For those who want to eliminate this step:

OPEN styles/prosilver/template/quickreply_editor.html

FIND:
Code: Select all
onload_functions.push('init_qr();');

REPLACE WITH:
Code: Select all
// onload_functions.push('init_qr();');


FIND AND DELETE the one occurrence each of:
Code: Select all
<noscript>

AND
Code: Select all
</noscript>


Then Refresh the prosilver template in the ACP, Styles tab, or purge the cache.

DavidIQ gets all credit for this MOD. I am merely the presenter.