
-
AuthorPosts
-
March 9, 2020 at 5:50 pm #1191604
Unfortunately my license has been expired (no right for support), but lets try it ;)
I try to get the language switcher as a dropdown menu, but it seems that its only horizontally. Is there a way to fix this? (Or can you tell me where to look?)
Thanks
March 10, 2020 at 7:04 am #1191731March 10, 2020 at 4:59 pm #1191916This reply has been marked as private.March 11, 2020 at 5:47 am #1192141Hi Arjan,
Thanks for the update. It’s no problem if this is development site and you don’t have a license for it yet, we just need to see the problem in order to help you out. So if you could put it on a live server which we can access then that would be great.
Best regards,
RikardMarch 16, 2020 at 6:48 pm #1193567See private
-
This reply was modified 5 years ago by
Arjan1985.
March 22, 2020 at 7:44 pm #1195287Any update :)
March 23, 2020 at 2:53 am #1195328Hi,
Thank you for the update.
That is the default layout of the language switcher in the theme. And if you want to disable it, you have to add this snippet 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); }
Then add this code to insert the default language switcher inside the header.
// Render the default language switcher (activate header meta) add_action('avia_meta_header', 'ava_icl_language_selector'); function ava_icl_language_selector(){ do_action('icl_language_selector'); }
Best regards,
IsmaelMarch 23, 2020 at 4:53 pm #1195524I put both of them in the functions.php?
March 27, 2020 at 4:45 am #1198207Hi,
Yes, both snippet should go in the functions.php file — one will disable the theme’s language switcher and the other will add the default switcher from the plugin inside the top bar of the header. You will have to configure the switcher style in the WPML > Languages panel.
Best regards,
IsmaelMarch 27, 2020 at 3:10 pm #1198355Hi Ismael,
Thats what I did, but it doesnt seems to work :(
March 30, 2020 at 2:55 am #1198985Hi,
We edited the functions.php file and adjusted the code a bit. The default flags are now showing inside the header, but it has to be adjusted with css. This is the updated code.
add_action('after_setup_theme','avia_remove_main_menu_flags', 999); function avia_remove_main_menu_flags(){ remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 9998, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 9998, 2 ); } // Render the default language switcher (activate header meta) add_action('ava_main_header', 'ava_icl_language_selector'); function ava_icl_language_selector(){ do_action('icl_language_selector'); }
Add this css code to adjust the position of the language switcher.
#lang_sel { float: right; position: relative; top: 18px; } .main_menu { right: 220px; }
Best regards,
Ismael -
This reply was modified 5 years ago by
-
AuthorPosts
- You must be logged in to reply to this topic.