Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1013415

    Hi, is there an easy way to disable prettyPhoto lightbox for smaller screens via Media Query?
    Thanks, TanSmi

    #1013688

    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

    #1015397

    Thank you very much Ismael,
    I tried it on mobile device and it works!
    Kind regards,
    TanSmi

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How to disable prettyPhoto Lightbox for Mobile Devices / Smaller Screens’ is closed to new replies.