Skip to:
Content
Pages
Categories
Search
Top
Bottom

Private title' showing before forum


  • jaydd
    Participant

    @jaydd

    Hello!
    I have all my forums and topics market as private, and i dont want the Title private’ shown before each and every one of my forums and topics like so–picture->Describing what i mean
    (Magánjellengű==Private-in hungarian)
    So thats all, i would like to make them disappear.

Viewing 1 replies (of 1 total)

  • Robin W
    Moderator

    @robin-w

    either add this to 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';
    }

    or use

    https://wordpress.org/support/plugin/bbp-style-pack

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