it is in
bbpress\includes\forums\template.php line 2021
But the easiest way to change it is to put this into your functions file :
function change_translate_text( $translated_text ) {
$text = 'This forum is empty.' ;
if ( $translated_text == $text ) $translated_text = 'new text here' ;
return $translated_text;
}
add_filter( 'gettext', 'change_translate_text', 20 );
and change ‘new text here’ to the wording you want
Hi Robin,
You safe me a lot of time, been searching everywhere for it. You helped me big time! 🙂
btw, I will put this file along with others in the child-theme directory. This way is easy to remembered.
Thank you so MUCH for your great help 🙂 You Rock Big Time!
Have a wonderful day.
No problem, and thanks for your kind words – glad I was able to help !