Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created January 25, 2021 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djrmom/30bc567b24091f6b9256d52a3841de46 to your computer and use it in GitHub Desktop.
Save djrmom/30bc567b24091f6b9256d52a3841de46 to your computer and use it in GitHub Desktop.
facetwp make result in layout builder clickable
/**
** adds click even to each facetwp layout builder result to trigger
** a click on the first link within the result
**/
add_action( 'wp_footer', function() {
?>
<script>
(function($) {
$( '.facetwp-template' ).on( "click", ".fwpl-result", function() {
$(this).find('a:first')[0].click();
});
})(jQuery);
</script>
<?php
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment