Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #374571

    I want my site to be with WPML

    i choose drop down menu for WPML in the plugin options area
    but the site do not display the muti-language as a drop down list,

    please help us.

    #374726

    Hi paulchiao!

    Please add this on functions.php to remove the theme’s default flags (flag icons instead of dropdown):

    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);
    }

    You can then set the flags on the WPML option page (WPML > Display the language switcher in the WP Menu setting).

    Best regards,
    Peter

    #374913
    This reply has been marked as private.
    #375623

    i wan to close this, thanks

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘WPML’ is closed to new replies.