Hi,
Is it possible to disable the enfold Lightbox modal for NextGen Galleries only? I don’t want to disable the Lightbox per page because we need the Lightbox to display advance options for the Cookie Consent.
I’m looking for a function like Guinne007 wrote for another plugin in the following thread:
https://kriesi.at/support/topic/disable-lightbox-modal-just-for-photo-carousel/#post-905062
Hey,
Thanks for contacting us!
You can add following code to bottom of Functions.php file of your theme and replace “NEXTGEN-CLASS-HERE” with NextGen class
function add_class_to_wonderplugincarousel() {
?>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.NEXTGEN-CLASS-HERE').addClass('noLightbox');
});
</script>
<?php
}
add_action('wp_footer', 'add_class_to_wonderplugincarousel');
If you are not sure of the class, please share a link of your page where you are using NextGen :)
Best regards,
Yigit
… great – this is working – excellent support ! ! !