Hi,
If you look here:
https://followtheboat.com/ftbmates/forum/supporter-only-videos/
You can see that the root link for my forums says ‘FORUMS’. I have used both a plugin, and also made a change to my functions file to change the name of this to ‘FTBMates’. However X seems to be over-riding this name change. The code I am using for my functions file (which I think is the same as what the plugin is trying to use) is:
add_filter( 'bbp_get_breadcrumb', 'change_breadcrumb_text' );
Function change_breadcrumb_text ($trail) {
$trail = str_replace ('Forums','FTBMates',$trail) ;
return $trail ;
}
How do I disable X from over-riding this name change, or how do I force this name-change?
Thanks!