Buy me a coffee

How to disable Gallery Lightbox on Mobile

You can use these code to Custom CSS box to disable Gallery Lightbox on Mobile.
#1. Gallery Grid – Simple

@media screen and (max-width:767px) {
a.gallery-grid-lightbox-link {
    pointer-events: none;
}
}

How To Disable Gallery Lightbox On Mobile 1 Min

#2. Gallery Grid – Strips

@media screen and (max-width:767px) {
  figure.gallery-strips-item .gallery-strips-lightbox-link {
      pointer-events: none;
  }
}

How To Disable Gallery Lightbox On Mobile 2 Min

#3. Gallery Masonry

@media screen and (max-width:767px) {
  a.gallery-masonry-lightbox-link {
      pointer-events: none;
  }
}

How To Disable Gallery Lightbox On Mobile 3 Min