MyBB Community Forums

Full Version: Remove RE: ....... from replies
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,
I have a small general forum.
I am having a issue to remove this from the thread showings.

Example:
A member posts a thread with title "Hello"
Now a second member will reply to this thread, third, fourth and so on...
Each reply has a title with
RE: Hello (or whatever the thread title is)

How do I remove this RE: ....... from showing up when a members replies on threads.
and from where?

Thanks.

Regards.
see replies here. you have to edit post.php file (use editor like notepad++) as well as the template
(2014-12-19, 03:39 AM).m. Wrote: [ -> ]see replies here. you have to edit post.php file (use editor like notepad++) as well as the template

Thanks for reply .m.
So do I need to remove the code from ./inc/datahandlers/post.php

Also Should I remove it from Go to: Admin Control Panel > Templates > Showthread Templates > showthread_quickreply >?
<input type="hidden" name="subject" value="RE: {$thread['subject']}" />
^ yes. for the php file you can use comment tag // at the beginning of a line to make it not executable.
for the template you can use html comment tags ( like <!-- content --> )
Sorry .m. a bit of noob here
So for the post.php I just have to add the this // but at beginning of which line?
As for the showthread_quickreply should it be like?
<!---input type="hidden" name="subject" value="RE: {$thread['subject']}" /> ????
^ what exactly is the MyBB version of your forum
(2014-12-19, 04:28 AM).m. Wrote: [ -> ]^ what exactly is the MyBB version of your forum

It is 1.6.16 mate.
post.php => there are 2 lines with $subject = "RE: ".$thread['subject']; (lines 202 & 212)
change both lines to
// $subject = "RE: ".$thread['subject'];

showthread_quickreply template
<input type="hidden" name="subject" value="RE: {$reply_subject}" />
change to
<!-- input type="hidden" name="subject" value="RE: {$reply_subject}" / -->
Thanks a lot for the help .m.
Cheers

Edit: Repped ya for great support