This topic has 6 replies, 3 voices, and was last updated 7 years, 2 months ago ago by Laranz
I cannot change or remove “Projects” in the breadcrumbs. I have installed the Loco Traslate plugin but do not have any options. 88f4acd2-6f88-454f-a4f1-b108c512b787 I would also like to totally remove the translation menu bar in the header. Can you give me instructions on how to do each?
Hi,
The “Projects” is taken from the Custom Portfolio types name, so try to change that in the POT. If that didn’t work, use this Code snippet in functions.php of your child theme.
function wp1482371_custom_post_type_args( $args, $post_type ) {
if ( $post_type == "etheme_portfolio" ) {
$args['labels']['name'] = 'Portfolio';
}
return $args;
}
add_filter( 'register_post_type_args', 'wp1482371_custom_post_type_args', 20, 2 );
Change the Portfolio to your desired name.
Let us know,
Thanks,
laranz.
I do not know what you mean by “POT” (so try to change that in the POT)?
Hello,
Please read this topic https://www.8theme.com/topic/change-portfolio-in-address-and-projects-in-breadcrumb/
Read more about theme translation and .pot file https://www.8theme.com/demo/docs/royal/#!/1_how_to_translate https://www.8theme.com/documentation/xstore/theme-translation/base-theme-translation/
To remove translation icons go to Appearance > Widgets > add Text widget with your content to “Left Side top bar area”.
Regards
Thanks. I changed the title in the code snippet. I tried to do the same with “recent works” changing it to something else, but the changes did not take effect and the arrows on my slider and at the bottom of the homepage went all crazy in Chrome and Firefox browsers. I can’t get them to turn back to arrows.
1) do I need to change the POT file to change recent works?
2) how can I fix the arrows in Chrome and Firefox?
Hi,
1. Which recent works? If you didn’t find that on POT please let us know the URL of that page, and we will guide you accordingly.
2. Can you show a screenshot about the arrows, and also the URL where this happens, so that we can check and find the issue.
Let us know,
Thanks,
laranz.
Tagged: breadcrumbs, projects, themes, woocommerce, wordpress
You must be logged in to reply to this topic.Log in/Sign up