Disable lightbox on mobile?
-
Hi,
I’ve tried to disable the lightbox from loading on mobile using the following code. Unfortunately, it doesn’t work. What am I missing?
Thank you
function disable_lightbox_on_mobile() { if ( wp_is_mobile() ) { wp_dequeue_style( 'leaflet-css' ); wp_dequeue_script( 'mwl-build-js' ); } } add_action( 'wp_enqueue_scripts', 'disable_lightbox_on_mobile', 100 );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Disable lightbox on mobile?’ is closed to new replies.