MyBB Community Forums

Full Version: Quick Reply Not Working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I got the first two fixed but I am not sure how to fix the 3rd one.
It is because you have your navigation inside a h1 tag. Make it so it is like this:

<h1 class="navigation"></h1>

You might need to clear the default H1 settings (font-size, margin etc)
Thanks. That fixed the validator errors. I will let my members know and see if it is fixed.
Well, validation is only one of the possible issues.


Check this thread (the question gets asked a lot.....)

http://community.mybb.com/post-960089.html#pid960089
I registered on your site as "member".
It seems your quick reply form is indeed still broken. I made an intro thread fine, then replied to another thread that I could actually commit a structured reply to, and all I got was the loading box (ajax kicking in) and nothing afterwards.

Under "Show Thread Templates" in the templates section of your AdminCP, what does your showthread_quickreply template look like on the inside?
<br />
<form method="post" action="newreply.php?tid={$tid}&amp;processed=1" name="quick_reply_form" id="quick_reply_form">
	<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
	<input type="hidden" name="subject" value="RE: {$thread['subject']}" />
	<input type="hidden" name="action" value="do_newreply" />
	<input type="hidden" name="posthash" value="{$posthash}" id="posthash" />
	<input type="hidden" name="quoted_ids" value="" id="quoted_ids" />
	<input type="hidden" name="lastpid" id="lastpid" value="{$last_pid}" />
	<input type="hidden" name="from_page" value="{$page}" />
	<input type="hidden" name="tid" value="{$tid}" />
	<input type="hidden" name="method" value="quickreply" />

	<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
		<thead>
			<tr>
				<td class="thead" colspan="2">
					<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['quickreply']}.gif" id="quickreply_img" class="expander" alt="[-]" title="[-]" /></div>
					<div><strong>{$lang->quick_reply}</strong></div>
				</td>
			</tr>
		</thead>
		<tbody style="{$collapsed['quickreply_e']}" id="quickreply_e">
			<tr>
				<td class="trow1" valign="top" width="22%">
					<strong>{$lang->message}</strong><br />
					<span class="smalltext">{$lang->message_note}<br /><br />
					<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" {$postoptionschecked['signature']} />&nbsp;<strong>{$lang->signature}</strong></label><br />
					<label><input type="checkbox" class="checkbox" name="postoptions[disablesmilies]" value="1" />&nbsp;<strong>{$lang->disable_smilies}</strong></label>{$closeoption}</span>
				</td>
				<td class="trow1">
					<div style="width: 95%">
						<textarea style="width: 100%; padding: 4px; margin: 0;" rows="8" cols="80" name="message" id="message" tabindex="1"></textarea>
					</div>
					<div class="editor_control_bar" style="width: 95%; padding: 4px; margin-top: 3px; display: none;" id="quickreply_multiquote">
						<span class="smalltext">
							{$lang->quickreply_multiquote_selected} <a href="./newreply.php?tid={$tid}&amp;load_all_quotes=1" onclick="return Thread.loadMultiQuoted();">{$lang->quickreply_multiquote_now}</a> {$lang->or} <a href="javascript:Thread.clearMultiQuoted();">{$lang->quickreply_multiquote_deselect}</a>.
						</span>
					</div>
				</td>
			</tr>
			{$sm_captcha}{$captcha}
			<tr>
				<td colspan="2" align="center" class="tfoot"><input type="submit" class="button" value="{$lang->post_reply}" tabindex="2" accesskey="s" id="quick_reply_submit" /> <input type="submit" class="button" name="previewpost" value="{$lang->preview_post}" tabindex="3" /></td>
			</tr>
		</tbody>
	</table>
</form>
Check the post bits as in the post I linked you to. Does this happen on default theme?
(2013-01-22, 02:45 PM)Leefish Wrote: [ -> ]Check the post bits as in the post I linked you to. Does this happen on default theme?

Good point, actually.
I didn't look towards that because I didn't see anything special about his postbit, but I do see he has the postbit for his points system enabled.

Your quick reply template is fine.
Pages: 1 2