How to remove voices via themes functiond.php
-
I managed to remove the area at the header of forum which states this topic has x amount of details etc by placing this code in functions.php
add_filter( ‘bbp_get_single_forum_description’, ‘ja_return_blank’ );
add_filter( ‘bbp_get_single_topic_description’, ‘ja_return_blank’ );
function ja_return_blank() {
return ”;
}
How do I now remove the actual voices part and the numbers which shows, can I do this through functions.php also.
Thanks for help.
- You must be logged in to reply to this topic.