Skip to:
Content
Pages
Categories
Search
Top
Bottom

Remove Private Tag

  • @jamesamack

    Participant

    Hi guys,

    I was hoping you could help me out here, first up I’m working with BBPress V2.5.4.

    I’m building a private members only forum and I’ve got everything up and running but every forum has the tag Private: in front of it. So when i end up opening things I end up with the page header as “Home › Forum › Private: Private: FORUM NAME TEST” for example.

    Is there any way you can remove the Private bit? Without making everything public?

    Sorry I can’t share the site but as it’s all hidden behind a membership section there isn’t anything to show.

    Thanks in advance for the help

Viewing 3 replies - 1 through 3 (of 3 total)
  • @robin-w

    Moderator

    yes put this code in your functions file

    add_filter('protected_title_format', 'ntwb_remove_protected_title');
    function ntwb_remove_protected_title($title) {
    	return '%s';
    }
     
    add_filter('private_title_format', 'ntwb_remove_private_title');
    function ntwb_remove_private_title($title) {
    	return '%s';
    }

    for information on functions files see

    Functions files and child themes – explained !

    @jamesamack

    Participant

    Worked perfectly, thank you so much Robin.

    @robin-w

    Moderator

    You’re welcome !

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