Last active
November 5, 2020 17:54
-
-
Save mgibbs189/a4d4bc8159e6a8e2fa0e909fd78400e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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