Not sure if this is a forum related question or breadcrumbs from your wordpress theme?
Can you show
What the title is
What the permalink is
what the breadcrumb says currently
what you would like it to say
Hi,
Thank you for responding. Sorry I couldn’t get back to you for so long.
I don’t use breadcrumbs in my website. I use a custom menu with one of the menu items being the forum. The forum is navigated using bbpress breadcrumbs.
The page title would be ‘No Labels Community Forum’ and in breadcrumbs it would be N L C F
Thank you for your time
Jerry
you might be able to do this with css if the forum root has a certain class or id
if it does use :before
after the class/id and content:"N C L F"
and then just style it to fit the rest of your breadcrumbs
This should do it
add_filter( 'bbp_get_breadcrumb', 'change_breadcrumb_text' );
Function change_breadcrumb_text ($trail) {
$trail = str_replace ('No Labels Community Forum','N L C F',$trail) ;
return $trail ;
}
Hi Robkk, Robin W,
Thank you for responding.
Hopefully by Tuesday I will be able to let you know how I made out.
Thank you for your time.
Jerry
Hi,
I used the function.php method first and it worked perfectly.
Thank you for your help.
Jerry
great – glad you’re fixed