Mobile navigation javascript problem
Mobile navigation javascript problem
Mobile navigation javascript problem
Turns out I am clearly a moron and forgot to clear my cache, the below code works perfectly add_action( ‘wp_enqueue_scripts’, ‘agentwp_dequeue_stylesandscripts’, 100 ); function agentwp_dequeue_stylesandscripts() { if ( class_exists( ‘woocommerce’ ) ) { wp_dequeue_style( ‘selectWoo’ ); wp_deregister_style( ‘selectWoo’ ); wp_dequeue_script( ‘selectWoo’); wp_deregister_script(‘selectWoo’); } }
problem disabling plugin only for mobile
How to load subdirectory mobile theme and redirect mobile devices to subfolder?
How can I use my blog page as the homepage but only for mobile/tablet visits?
Top bar menus not showing on mobile
Thumbnail size problem Desktop vs Mobile site
My menu doesn’t fit in the default screen in the mobile version
(Mobile) Hamburger menu disappeared from a page (only one)
The CSS isn’t the culprit here, there is an issue with your jQuery logic. Based on the provided jQuery it looks like you’re binding click events based on class names. I would suggest binding the click event that triggers the initial navigation dropdown to the hamburger icon’s ID rather than class. And then binding a … Read more