Skip to:
Content
Pages
Categories
Search
Top
Bottom

Private Forum issue


  • brmbk
    Participant

    @brmbk

    I am using WP 4.9.5 and bbpress 2.5.14 for a closed user group. Access to the forum main page needs registration and sign in. That works well. On the forum main page the different forums are marked as privat. When I am on the page of a specific forum, in the title “Privat” appeards twice. This is not a critical issue, but not nice. What do I have to do to change that?

Viewing 1 replies (of 1 total)

  • Pascal Casier
    Moderator

    @casiepa

    Hi @brmbk,

    You would need to add the following function into your functions.php:

    add_filter('private_title_format', 'brmbk_remove_private_title');
    function brmbk_remove_private_title($title) {
    	return '%s';
    }

    If you don’t know how or where to add it, you can also install my bbp-toolkit plugin and you will find the option in there.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar