Hi, how do I disable the superfish drop down menus? Is there a way I can stop the script from enqueue-ing from custom-functions.php? Thanks
How to disable superfish?
(3 posts) (2 voices)-
Posted 9 months ago #
-
add_action( 'wp_print_scripts', 'my_deregister_javascript', 100 );
function my_deregister_javascript() {
wp_deregister_script( 'superfish' ); /* Disables superfish script */
wp_deregister_script( 'supersubs' ); /* Disables supersubs script */
}How to disable scripts and styles
Posted 9 months ago # -
thanks!
Posted 9 months ago #
Reply
You must log in to post.