Skip to content

Instantly share code, notes, and snippets.

@ChrisCree
Last active December 14, 2015 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChrisCree/7a61acf67e42d385949a to your computer and use it in GitHub Desktop.
Save ChrisCree/7a61acf67e42d385949a to your computer and use it in GitHub Desktop.
Fix for Android devices, Genesis themes and dropdown menus.
<?php
// Do not copy opening PHP tag above
// Fix for Android devices not showing drop down menus when top level menu item clicked
add_filter( 'genesis_superfish_enabled', '__return_true' );
add_action( 'wp_enqueue_scripts', 'wsm_android_hover_fix' );
function wsm_android_hover_fix() {
wp_enqueue_script( 'hoverIntent' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment