Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1206487

    Is it possible to disable lightbox for entries thumbnails or for the entire blog page?

    #1206599

    Hey andoni34,

    Can you try to add this code in functions.php (child theme):

    function remove_lightbox(){
    	?>
    	<script>
    		document.querySelector(".big-preview a").classList.add("noLightbox");
    	</script>
    	<?php
    }
    add_action('wp_footer', 'remove_lightbox');

    Best regards,
    Nikko

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.