Skip to content

Instantly share code, notes, and snippets.

@flymke
Created November 30, 2021 15:35
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 flymke/5fe931d5b8f86389bc440b0366a8fc83 to your computer and use it in GitHub Desktop.
Save flymke/5fe931d5b8f86389bc440b0366a8fc83 to your computer and use it in GitHub Desktop.
make future doors clickable, e.g. for custom popups
add_action( 'wp_head', function () { ?>
<script>
jQuery(document).ready(function($){
$('.santapress-door.status-future:not(.preview)').css('pointer-events', 'auto').find('a').removeClass('santapress-modal');
});
</script>
<?php } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment