Skip to:
Content
Pages
Categories
Search
Top
Bottom

How do I change the breadcrumb?


  • info99928
    Participant

    @info99928

    Default:
    “My website title that is fricking long” > Forums > Forum > Post

    I know how to change everything except “My website title that is fricking long”. I obviously don’t want to change my website’s name, I just want to change what is shown in the forum breadcrumb and there is not a setting for that.

    Thanks

Viewing 1 replies (of 1 total)

  • Robin W
    Moderator

    @robin-w

    put this in your child theme’s functions file

    function rew_breadcrumbs ($args) {
    	
    	$args['home_text'] = 'your new words here';
    	return $args ;
    	
    }
    
    add_filter('bbp_before_get_breadcrumb_parse_args', 'rew_breadcrumbs');

    or use

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Breadcrumbs

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