Apologies but I’m being stupid, but can you explain or give an example of what you mean by bbp-template-notice info ?
These notices:
- This topic contains 0 replies, has 1 voice, and was last updated by Avatar of Sam Hughey Sam Hughey June 10, 2014 at 8:32 PM.
- Your account has the ability to post unrestricted HTML content.
- Oh bother! No topics were found here!
Sorry, I should have been clearer.
ok, you’ll need to add the following to your functions file
//this function removes the "this topic contains..." and "this forum contains..." text
function no_description ($retstr) {
$retstr="" ;
return $retstr ;
}
add_filter ('bbp_get_single_topic_description', 'no_description' ) ;
add_filter ('bbp_get_single_forum_description', 'no_description' ) ;
//This function changes the text wherever it is quoted
function change_translate_text( $translated_text ) {
if ( $translated_text == 'Your account has the ability to post unrestricted HTML content.' ) {
$translated_text = '';
}
if ( $translated_text == 'Oh bother! No topics were found here!' ) {
$translated_text = '';
}
return $translated_text;
}
add_filter( 'gettext', 'change_translate_text', 20 );
who are page for apply your change code?