Go to Dashboard > Elementor > Custom Code. And then add this code to make the whole space/box/card of the post widget to be clickable.
Note: It does not work on new posts that has been generated by ‘Load More’ or ‘Infinity Scroll’ pagination.
IMPORTANT
You have to set the post CSS Classes to post. But if you forgot and it works just fine, then it’s fine.
CODE
<script>
document.addEventListener('DOMContentLoaded', function() {
jQuery(function($){
$('.post').find('.elementor-post').each(function(){
let link = $(this).find('a').attr('href');
$(this).wrapAll( document.createElement( 'a' ) );
$(this).closest('a').attr('href', link);
});
});
});
</script>
POPUP
If you want the whole box to be clickable on popup as well, add this to Elementor Custom Code as well.
<script>
jQuery( document ).on( 'elementor/popup/show' , function () {
jQuery(function($){
$('.post').find('.elementor-post').each(function(){
let link = $(this).find('a').attr('href');
$(this).wrapAll( document.createElement( 'a' ) );
$(this).closest('a').attr('href', link);
});
});
});
</script>
BUG
If there is a bug when you set the featured image on the top, put it on the left or right of the title.