Skip to:
Content
Pages
Categories
Search
Top
Bottom

How do I remove or edit the separator in the admin links?


  • leev
    Participant

    @leev18


    Image above explains it. I could edit or remove the separator in the core template file, but it’ll change back to default in the next bbpress update. Any help is appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,
    Sorry it took me some time, but this hopefully works. Just add in a functions.php or so.
    Will add it in next version of my bbP Toolkit …

    function casiepa_change_admin_links_sep($args) {
    	$args['sep'] = '';
    	return $args;
    }
    add_filter('bbp_after_get_topic_admin_links_parse_args', 'casiepa_change_admin_links_sep' );
    add_filter('bbp_after_get_reply_admin_links_parse_args', 'casiepa_change_admin_links_sep' );
    

    Pascal.

    Added in version 1.0.7 of my bbP Toolkit plugin.

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