MyBB Community Forums

Full Version: Remove SCEditor from GoMobile Template??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I install SCEditor plugins but this plugins also appearing in gomobile template in "EDIT POST" how to remove that from GoMobile please help me..
This is only appearing in editpost not in new thread, new reply...

Someone help me please.....
look for the SCEditor plugin codes in the edit post template and remove them if any...

ACP >> Templates >> Go Mobile Templates >> Edit Post Templates >> editpost
I did not found anything related that....
I am posting editpost codes here
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->edit_post}</title>
{$headerinclude}
<script type="text/javascript" src="jscripts/post.js?ver=1400"></script>
</head>
<body>
{$header}
{$preview}
{$post_errors}
{$attacherror}

<form action="editpost.php" method="post" name="editpost">

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
	<tr><td class="thead" colspan="2"><strong>{$lang->delete_post}</strong></td></tr>
	<tr>
		<td class="trow1" style="white-space: nowrap"><input type="checkbox" class="checkbox" name="delete" value="1" tabindex="9" /> <strong>{$lang->delete_q}</strong></td>
		<td class="trow1" align="right"><input type="submit" class="button" name="submit" value="{$lang->delete_now}" tabindex="10" /></td>
	</tr>
</table>
<input type="hidden" name="action" value="deletepost" />
<input type="hidden" name="pid" value="{$pid}" />
</form>

<br />
<form action="editpost.php?pid={$pid}&amp;processed=1" method="post" enctype="multipart/form-data" name="input">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
	<tr><td class="thead"><strong>{$lang->edit_post}</strong></td></tr>

	<tr><td class="tcat"><strong>{$lang->subject}:</strong></td></tr>
	<tr><td class="trow2">{$prefixselect}<input type="text" class="textbox" name="subject" style="width: 50%;" maxlength="85" value="{$subject}" tabindex="1" /></td></tr>

	<tr><td class="tcat" valign="top"><strong>{$lang->your_message}:</strong></td></tr>
	<tr><td class="trow2" align="center"><textarea name="message" id="message" style="height: 150px; width: 95%;"tabindex="3">{$message}</textarea></td></tr>

	<tr><td class="tcat" valign="top"><strong>{$lang->post_options}</strong></td></tr>
	<tr><td class="trow1 smalltext">
		<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" tabindex="6"{$postoptionschecked['signature']} /> {$lang->gomobile_showsig}</label>
		{$disablesmilies}
	</td></tr>
	{$subscriptionmethod}

	<tr><td class="tfoot" align="center"><input type="submit" class="button" name="submit" value="{$lang->update_post}" tabindex="3" accesskey="s" />  <input type="submit" class="button" name="previewpost" value="{$lang->preview_post}" tabindex="4" /></td></tr>
</table>

<input type="hidden" name="action" value="do_editpost" />
<input type="hidden" name="posthash" value="{$posthash}" />
<input type="hidden" name="attachmentaid" value="" />
<input type="hidden" name="attachmentact" value="" />
</form>
{$footer}
</body>
</html>

Please check