MyBB Community Forums

Full Version: Advanced Quick Reply Update for 1.6
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Are we able to get an update for - http://mods.mybb.com/view/advanced-quick-reply-form ?

Thanks Big Grin
The author hasn't logged in for over 2 years now. Try to contact him.

Have you tried changing the compatibility line? Probably it's all it takes to update.

You'll have to contact the developer for clarification on that.
I have contacted him, and i have done this (http://community.mybb.com/thread-75646.html) and hopefully it will work.
It doesn't work it needs template alternations to work.

It has a problem - while viewing any thread (a page that has quick reply form in it) - you get horizontal scroll bar if this plug-in is enabled and if you disable it - no horizontal scroll bar. Any idea how to remove it? I don't see any code showing this unneeded width expansion Confused


To make AdvancedQuickReply work with MyBB 1.6

in addition to changing 14* to 16* and then uploading, edit the Template of the theme you're using (AdminCP > Themes&Templates > Templates > Your Theme's Template > Show Thread Templates > showthread_quickreply) and replace

<label><input type="checkbox" class="checkbox" name="postoptions[disablesmilies]" value="1" />&nbsp;<strong>{$lang->disable_smilies}</strong></label>{$closeoption}</span><br />
				</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>

with

<label><input type="checkbox" class="checkbox" name="postoptions[disablesmilies]" value="1" />&nbsp;<strong>{$lang->disable_smilies}</strong></label>{$closeoption}</span><br />{$clickablesmilies}
				</td>
				<td class="trow1">
					<div style="width: 95%">
						<textarea style="width: 100%; padding: 4px; margin: 0;" rows="18" cols="80" name="message" id="message" tabindex="1"></textarea>{$codebuttons}

and it'll work as charm Big Grin

I did this - http://community.mybb.com/thread-75646.html and didn't have any issues, so i am happy now Smile
work to for me, thx soonchica but why smile order not effect
html { overflow-x: hidden; }

Add the above to the top of global.css (advanced mode) when editing your style, and it will "fix" the problem with the vertical scrollbar.
Tnx Arty2 that really did it - finally! Smile
Hello
Sorry but I applied the changes to the template showthread_quickreply but it does not change the fact that the smilies are not accessible?
here's the code:
<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><br />{$clickablesmilies}				
</td>				
<td class="trow1">					
</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>			
{$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>

someone managed to find the solution?