Last active
February 5, 2019 15:28
-
-
Save akther80/b17076a13d885f4a0f688ebdc8259647 to your computer and use it in GitHub Desktop.
Electro - Departments menu show dropdown by default in default template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( ! function_exists( 'el_child_default_template_departments_menu_show_dropdown' ) ) { | |
function el_child_default_template_departments_menu_show_dropdown( $enable_dropdown ) { | |
return is_front_page() ? false : $enable_dropdown; | |
} | |
} | |
add_filter( 'electro_departments_menu_v2_enable_dropdown', 'el_child_default_template_departments_menu_show_dropdown', 90 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment