Shop breadcrumbs name
-
Hey
trying to work with the theme’s default breadcrumbs, and i just want to change the main shop page name, i changed the title with this:
function my_alter_shop_page_header_title( $title ) {
if ( is_shop() ) {
$title = ‘New Title’;
}
// Return the title
return $title;}
add_filter( ‘ocean_title’, ‘my_alter_shop_page_header_title’, 20 );but the breadcrumbs is still “Products”. how can i change it?
thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Shop breadcrumbs name’ is closed to new replies.