MyBB Community Forums

Full Version: remove "RE:" from subject of replies?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi
How can I remove "RE:" from subject of "new reply" and "pm reply"?

I edited the post.php file on ./inc/datahandlers/ but it (RE) have not removed.

(Currently I could remove it from subject of "quickreply".)
Remove them from the declarations on lines 822 and 837 of ./private.php

That should do the trick.
thanks, it have been removed from "PM reply". But what about "new reply" (in threads) ??
^ remove from newreply.php file !
(2011-09-21, 09:15 AM)ranjani Wrote: [ -> ]^ remove from newreply.php file !

This, Line 719.
thanks guys. solved.
(2011-09-21, 10:18 AM)Aashik Wrote: [ -> ]
(2011-09-21, 09:15 AM)ranjani Wrote: [ -> ]^ remove from newreply.php file !

This, Line 719.

This is very useful.

I like every new reply enters its new subject, how to? this feature will be nice in Threaded Mode avoiding uniform RE:subjects.

If I change the line 719 to $subject = "", it will make an error...



If you want to remove RE: text from the reply, then here is a quick way to do that;

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']}" />