Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active November 5, 2020 17:54
Show Gist options
  • Save mgibbs189/a4d4bc8159e6a8e2fa0e909fd78400e7 to your computer and use it in GitHub Desktop.
Save mgibbs189/a4d4bc8159e6a8e2fa0e909fd78400e7 to your computer and use it in GitHub Desktop.
<?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 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment