Skip to content

Instantly share code, notes, and snippets.

@ChaseWiseman
Created February 25, 2020 18:33
Show Gist options
  • Save ChaseWiseman/c92748155c2cfcddeab5355636fdba24 to your computer and use it in GitHub Desktop.
Save ChaseWiseman/c92748155c2cfcddeab5355636fdba24 to your computer and use it in GitHub Desktop.
Limit Jilt for EDD JS to logged-in users
<?php // only copy this line if needed
add_action( 'wp_enqueue_scripts', function() {
if ( ! is_user_logged_in() ) {
wp_dequeue_script( 'edd-jilt' );
}
}, 15 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment