Tagged: WPML Flags
Hi, i want to change the flags with text language like spanish and catalan. I find this solution https://kriesi.at/support/topic/wpml-language-selector-text-instead-of-flag/ but only appears ESP CAT. How can i change it?
How can I do this changes in child theme?
Thanks,
Hi Marc,
Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.
Regards,
Rikard
Hi Rikard, i post the admin credentials in private section.
Thanks
Hi!
Please add this in the functions.php file:
add_action('after_setup_theme','avia_remove_main_menu_flags');
function avia_remove_main_menu_flags(){
remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
}
Go to WPML then the Display the language switcher in the WP Menu. Select your main or secondary menu. On Language switcher style, choose the Drop-down menu.
Best regards,
Ismael