WooGallery Pro double shortcode issue
Wed Sep 24 2025 09:25:48 GMT+0000 (Coordinated Universal Time)
Saved by
@Pulak
document.addEventListener("DOMContentLoaded", function() {
var mediaQuery = window.matchMedia("(min-width: 641px)");
function handleChange(e) {
if (e.matches) {
var el = document.querySelector(".fusion-no-medium-visibility.fusion-no-large-visibility #wpgs-gallery");
if (el) {
el.remove();
}
}
}
// Run once
handleChange(mediaQuery);
// Run when screen crosses 641px breakpoint
mediaQuery.addEventListener("change", handleChange);
});
content_copyCOPY
Comments