This topic has 4 replies, 2 voices, and was last updated 6 years, 2 months ago ago by Rose Tyler
Hello,
I have the category “travel” on my website. When I click on the page, the header says “Home > Archive by category “Travel”. I’m wondering if it is possible to change this so it so the page just says “Home > Travel”.
Thanks for your help!
Hello,
You can copy etheme_breadcrumbs
function (lifestyle/framework/theme-functions.php) into functions.php of child theme and make changes there.
Regards
Thanks for your quick response. Could you be more specific on where I find that/make those changes? Thank you!
Please open theme-functions.php file in framework folder of lifestyle theme and find the required function (1779-1912 lines https://prnt.sc/kti8y4). Copy the content of the function into child theme/functions.php file and change
echo $before . 'Archive by category "' . single_cat_title('', false) . '"' . $after;
to
echo $before . '"' . single_cat_title('', false) . '"' . $after;
Read more about child theme https://www.8theme.com/demo/docs/lifestyle/#child_theme
Regards
You must be logged in to reply to this topic.Log in/Sign up