Is it possible to disable lightbox for entries thumbnails or for the entire blog page?
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