Fix for mod prime quick reply

Download and support for PhpBB3 Please Wait
Locked
sakkitt8
BBCoder I
BBCoder I
Posts: 2
Joined: 22 Apr 2014, 12:06
BBCodes: 10

Fix for mod prime quick reply

Post by sakkitt8 »

Hi.
for those who have installed prime quick reply

open styles/prosilver/template/prime_quick_reply.html

find:

Code: Select all

<fieldset class="submit-buttons" style="margin-bottom:0;">
				{QUICK_REPLY_HIDDEN_FIELDS}
				<input type="submit" name="preview" tabindex="6" value="{L_PREVIEW}" class="button1" onclick="document.getElementById('postform').action += '#preview';" />&nbsp;
				<input type="submit" name="post" tabindex="5" value="{L_SUBMIT}" class="button1" accesskey="s" />
			</fieldset>
replace with:

Code: Select all

<fieldset id="buttons" class="submit-buttons">
					{S_FORM_TOKEN}
					{QUICK_REPLY_HIDDEN_FIELDS}
					<input type="submit" accesskey="s" tabindex="6" name="post" value="{L_SUBMIT}" class="button1" onclick="JavaScript:document.getElementById('buttons').style.display='none';document.getElementById('processingsub').style.display='block';" />&nbsp;
					<input type="submit" tabindex="5" name="preview" value="{L_PREVIEW}" class="button2" onclick="JavaScript:document.getElementById('buttons').style.display='none';document.getElementById('processingpre').style.display='block';document.getElementById('postform').action += '#preview';" />&nbsp;
					<input type="submit" accesskey="f" tabindex="7" name="full_editor" value="{L_FULL_EDITOR}" class="button2" onclick="JavaScript:document.getElementById('buttons').style.display='none';document.getElementById('processingfed').style.display='block';" />&nbsp;
				</fieldset>
				<fieldset id="processingsub" class="submit-buttons" style="display:none;">
					<input class="button1" type="button" value="{L_POST_SENDING}" disabled="disabled" />
				</fieldset>
				<fieldset id="processingpre" class="submit-buttons" style="display:none;">
					<input class="button1" type="button" value="{L_PREVIEW_SENDING}" disabled="disabled" />
				</fieldset>
				<fieldset id="processingfed" class="submit-buttons" style="display:none;">
					<input class="button1" type="button" value="{L_FULLED_SENDING}" disabled="disabled" />
				</fieldset>

I hope I was helpful ;)
User avatar
martin123456
BBCoder VI
BBCoder VI
Posts: 765
Joined: 25 Jul 2011, 13:29
BBCodes: 34
Favourite MOD: Ban button
Location: Down south!
Contact:

Fix for mod prime quick reply

Post by martin123456 »

And this so called fix fix's what ? cant see what qr has to do with the pm reg bar mod.

May be you should have posted in the pls wait mod ?
sakkitt8
BBCoder I
BBCoder I
Posts: 2
Joined: 22 Apr 2014, 12:06
BBCodes: 10

Fix for mod prime quick reply

Post by sakkitt8 »

martin123456 wrote:And this so called fix fix's what ? cant see what qr has to do with the pm reg bar mod.

May be you should have posted in the pls wait mod ?
opssss yes.. it's for please wait mod :| sorry
waleed444
BBCoder I
BBCoder I
Posts: 1
Joined: 24 Feb 2015, 07:52
BBCodes: 1

Re: Fix for mod prime quick reply

Post by waleed444 »

Made all the edits, purged the cache and refresh template. Nothing...
Locked