Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #534287

    hi, everyone. i have two questions:
    – how i can hide or cancel “Enfold Theme by Kriesi” in the footer?
    – i use wpml. in automatically there are the flag icon of the languages near the principal menù. how i can remove there?
    thanks

    #534294

    Hi Pas7o!

    1. Please follow the instructions here:

    http://kriesi.at/documentation/enfold/change-the-footer-text-and-link/

    2. May we have a link to your website so we can provide you with the appropriate css?

    Regards,
    Dake

    #534349

    hi dake!

    1. yes, works. thanks

    2. is not possible hide the wpml’s flags in the settings of endfolder or wpml?

    thanks

    #534487

    Hi!

    Please add following code to Functions.php file in Appearance > Editor

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

    Regards,
    Yigit

    #534510

    works, thank you so much.

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