<?php

// Add the following into your (child) theme's functions.php

add_action( 'wp_head', function() {
?>
<script>
(function($) {
    $(document).on('facetwp-loaded', function() {
        $('.fwpl-item.titleemail a').each(function() {
            var href = $(this).attr('href');
            $(this).closest('.fwpl-result').wrap('<a href="' + href + '"></a>');
        });
    });
})(jQuery);
</script>
<?php
}, 100 );