!!! Velké obrázky místo náhledových

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('.p-thumbnails-inner .p-thumbnail').each(function(){
var dataSrc = $(this).attr('href');

$(this).children('img').attr('src',dataSrc);
});
});
</script>