Remove “Reply To:” from bbPress Reply Titles

When loading replies from bbPress, a filter is applied to the_title that prepends the string “Reply To:” to the beginning of the reply’s topic title. Below is code that removes the filter, and adds a new one without the offending string.

[pastacode lang=”php” manual=”%3C%3Fphp%0A%2F*%0A%20*%20Filter%20for%20bbpress%20reply%20post_title%2C%20without%20%22Reply%20To%3A%20%22%20prefix%0A%20*%20-%20reference%3A%20https%3A%2F%2Fbbpress.trac.wordpress.org%2Fbrowser%2Ftrunk%2Fsrc%2Fincludes%2Freplies%2Ftemplate.php%0A%20*%2F%0Afunction%20custom_bbp_get_reply_title_fallback(%20%24post_title%20%3D%20”%2C%20%24post_id%20%3D%200%20)%7B%0A%20%20%2F%2F%20Bail%20if%20title%20not%20empty%2C%20or%20post%20is%20not%20a%20reply%0A%20%20if%20(%20!%20empty(%20%24post_title%20)%20%7C%7C%20!%20bbp_is_reply(%20%24post_id%20)%20)%20%7B%0A%20%20%20%20return%20%24post_title%3B%0A%20%20%7D%0A%20%20%0A%20%20%2F%2F%20Get%20reply%20topic%20title.%0A%20%20%24topic_title%20%3D%20bbp_get_reply_topic_title(%20%24post_id%20)%3B%0A%20%20%2F%2F%20Get%20empty%20reply%20title%20fallback.%0A%20%20%24reply_title%20%3D%20sprintf(%20__(%20’%25s’%2C%20’bbpress’%20)%2C%20%24topic_title%20)%3B%20%20%0A%20%20%0A%20%20return%20apply_filters(%20’bbp_get_reply_title_fallback’%2C%20%24reply_title%2C%20%24post_id%2C%20%24topic_title%20)%3B%20%20%0A%7D%0A%2F%2F%20add%20custom%20filter%0Aadd_filter(%20’the_title’%2C%20’custom_bbp_get_reply_title_fallback’%2C%202%2C%202)%3B%0A%2F%2F%20remove%20bbpress%20default%20filter%0Aremove_filter(%20’the_title’%2C%20’bbp_get_reply_title_fallback’%2C%202)%3B” message=”” highlight=”” provider=”manual”/]

3 Thoughts

Discussion

craigmccollKanjipad
May 5, 2015

Thanks, worked perfectly.

Ahmad Jarkas
June 14, 2018

Hi Jonathan,

Thank you for sharing your code.
I have copied and pasted your code on my Theme functions.php, but the string “Reply To:” has not disappeared.
Should I change something else?

Many thanks
Ahmad

Matt
November 11, 2018

Try removing lines 1-5 … that worked for me.

Matt
November 11, 2018

Just what I was looking for. Thanks

Leave a Reply

Your email address will not be published. Required fields are marked *