Skip to:
Content
Pages
Categories
Search
Top
Bottom

Remove comma’s from forum index


  • Atlantius
    Participant

    @atlantius

    Hello, i want to remove the commans separating the forums in the index. I searched and found old solutions that do not work. I read on the codex to change the

    ‘separator’ => ‘, ‘, to ‘separator’ => ”,

    in the template.php files from includes but it does not remove the colon.

    Can you help me with this please?

Viewing 1 replies (of 1 total)

  • Robkk
    Moderator

    @robkk

    Try this.

    add_filter('bbp_after_list_forums_parse_args', 'ntwb_bbpress_list_forums' );
    function ntwb_bbpress_list_forums() {
    	$args['separator']        = '';
    	return $args;
    }

    Don’t mess with template files.

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