Skip to content

Instantly share code, notes, and snippets.

@akther80
Last active February 5, 2019 15:28
Show Gist options
  • Save akther80/b17076a13d885f4a0f688ebdc8259647 to your computer and use it in GitHub Desktop.
Save akther80/b17076a13d885f4a0f688ebdc8259647 to your computer and use it in GitHub Desktop.
Electro - Departments menu show dropdown by default in default template
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