Tagged: disable, mobile, prettyphoto
Hi, is there an easy way to disable prettyPhoto lightbox for smaller screens via Media Query?
Thanks, TanSmi
Hey TanSmi,
Thank you for using Enfold.
This code should help disable the lightbox on mobile view.
add_filter( 'body_class', function( $classes ) {
if(wp_is_mobile()) {
$classes = array_merge( $classes, array( 'noLightbox' ) );
}
return $classes;
});
You have to check it on an actual mobile device because that snippet won’t work on a browser/device emulator.
Best regards,
Ismael
Thank you very much Ismael,
I tried it on mobile device and it works!
Kind regards,
TanSmi