MyBB Community Forums

Full Version: Remove "RE:" in replies
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, how do I remove only the "RE:" text in a reply?
You JUST want to remove the Re? Not the thread title?
Go to: ACP > Templates > Showthread Templates > showthread_quickreply > find;
	<input type="hidden" name="subject" value="RE: {$thread['subject']}" />

and replace it with;
	<input type="hidden" name="subject" value="{$thread['subject']}" />
That will only remove it if posting from the Quick Reply.

See: http://community.mybb.com/thread-84055.html
Yes, I am thinking that the OP wants to remove it from the postbit body. Therefore both reply and quickreply need to be edited.

If he wants to get rid of the whole re: bla bla then thats easy to do. Go in the post bit and remove the div with post content in it (just above post message). Its going to get rid of ALL of it though, not just the Re, including first post :/

This bit:

<span class="smalltext"><strong>{$post['icon']}{$post['subject']}{$post['subject_extra']} </strong></span>
Thank you all, I had it solved, thanks.