-
AuthorPosts
-
January 15, 2018 at 10:57 am #897469
Hello,
I have two questions about Enfold.
1. How do I set the breadcrumb in German to the business language?
2. Can I lock or deactivate areas on a page so that they still have to be edited or are available but can not be seen in the backend?Best regards,
MartinJanuary 15, 2018 at 12:37 pm #897489Hey m_reiprich,
1) I’m not familiar with the difference between German and Business German, but you can create a custom language file with your changes, please read: Child Theme Translations
Some translation plugins also will let you make custom changes. I also tested the Say What plugin that will replace phrases on your site. I changed the “You are here:” and “Home” in the breadcrumbs
2) Locking backend elements is not a feature, but you can minimize them in the backend and explain to your users not to make changes to those elements.
Best regards,
MikeJanuary 15, 2018 at 4:12 pm #897596Unfortunately, that does not work with me. So in the Breadcrump should be in German: “Sie sind hier: …” and not as now “Du bist hier: …”.
January 16, 2018 at 4:52 am #897864Hi,
Which option didn’t work for you? The plugin or changing the language file? Is that the only phrase you are trying to change?Best regards,
MikeJanuary 17, 2018 at 11:44 am #898399Yes, that’s the only thing I want to change. I can imagine that it can be a default setting in Enfold. However, I do not find her.
January 17, 2018 at 12:36 pm #898431Hi,
Sorry there is not a setting, it is hard coded, but you can change it if you use ftp and edit the Enfold/framework/php/class-breadcrumb.php file and find “You are here:” twice and change it to “Sie sind hier:”
If you place a copy of this in your child theme folder, keeping the file structure, your change will stay after your next update.
Also add following code to functions.php file of your child theme:add_filter('avia_breadcrumbs_args', 'avia_change_bc_truncate', 50, 1); function avia_change_bc_truncate($args){ $args['truncate'] = 30; return $args; }
Best regards,
MikeJanuary 17, 2018 at 1:00 pm #898448Hi,
I also tested the Say What plugin with my site language set to German and these settings in the plugin:
and found it worked, perhaps you could try this.Best regards,
MikeJanuary 17, 2018 at 3:42 pm #898499hello, I can not find the “you’re here” in the class-breadcrumb.php, nor does it work with “say what”. Although I use exactly the same settings. I’m about to just leave the breadcrump away.
January 17, 2018 at 9:41 pm #898685 -
AuthorPosts
- You must be logged in to reply to this topic.