Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3669

Reply To: template_part hierarchy

$
0
0

If what you are looking for is to remove the

This topic contains blah blah blah

Look for this in content-single-topic.php

<?php bbp_single_topic_description(); ?>

You can also use a function snippet like this to remove it for Forums and topics.

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 '';

}

Viewing all articles
Browse latest Browse all 3669

Trending Articles