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
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
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
works, thank you so much.