Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wpeliteplugins/b1fb900ad276b0ce6a875def0af53552 to your computer and use it in GitHub Desktop.
Save wpeliteplugins/b1fb900ad276b0ce6a875def0af53552 to your computer and use it in GitHub Desktop.
Recaptcha for WooCommerce - Include script on custom page
<?php // Do not Write if its not already open
add_filter( 'woo_include_recaptcha_script', 'woo_recaptcha_include_script' );
function woo_recaptcha_include_script( $include ) {
return $include = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment