Hello,
I found the mistake. In the function.php that was in it.
Add_filter ( ‘wp_nav_menu_args’, ‘custom_blog_menu’);
Function custom_blog_menu ($ args) {
If (x_is_shop ()) {
$ Args [ ‘theme_location’] = ‘primary’;
$ Args [ ‘menu’] = ‘Esprit-External’;
}
Return $ args;
}
Add_filter ( ‘gettext’, ‘translate_text’);
Add_filter ( ‘ngettext’, ‘translate_text’);
Function translate_text ($ main) {
$ Main = str_ireplace ( ‘Select options’, ‘add to cart’, $ main);
Return $ main;
}
Thank you very much Thomas