There isn’t a method for changing the ‘Home’ word, but if you’d like it removed I can give you the code for that.
Ignite will be internationalized hopefully in two weeks time. Then there will be an English .po file you can work off of to create the needed translations.
Ok, thanks for this!
And yes please, I would gladly take the instructions how to remove the breadcrumbd entirely.
Thanks for the great theme! 8)
You’re welcome!
I’ve put together a child theme for you here. Click to download and then follow these steps to activate it:
- Visit your site’s dashboard
- Go to the Appearance menu
- Click on the “Add New” button at the top of the page
- Click on the “Upload Theme” button at the top of the page
- Click on the “Choose File” button
- Select the ignite-child.zip file you downloaded from the link above
- Click the blue “activate” link
You may need to reselect your menu locations, but after that you’re good to go 🙂
I already have a child-theme, so would it be ok if I just remove this from header.php:
<?php
if ( current_theme_supports( ‘breadcrumb-trail’ ) && !is_search() ) {
breadcrumb_trail(array(
‘separator’ => ‘>’,
‘show_browse’ => false,
‘show_on_front’ => false)
);
}
?>
or would that cause some troubles later?
The easiest way is to copy over the functions.php file from the child theme here to the child theme you’re using. If you already have a functions.php file, you can copy and paste the function that removes the breadcrumbs into your functions.php file.
Editing the header.php file would work, but when you update to the next version of Ignite your changes will be lost and the breadcrumbs will reappear.