Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #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

    #1191731

    Hey Arjan1985,

    Where can we see the problem you are having?

    Best regards,
    Rikard

    #1191916
    This reply has been marked as private.
    #1192141

    Hi 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,
    Rikard

    #1193567

    See private

    • This reply was modified 5 years ago by Arjan1985.
    #1195287

    Any update :)

    #1195328

    Hi,

    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,
    Ismael

    #1195524

    I put both of them in the functions.php?

    #1198207

    Hi,

    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,
    Ismael

    #1198355

    Hi Ismael,

    Thats what I did, but it doesnt seems to work :(

    #1198985

    Hi,

    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

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.