Skip to content

Instantly share code, notes, and snippets.

@jfarsen
Created August 9, 2017 01:38
Show Gist options
  • Save jfarsen/c330409dffd1a6f870a4182c8e085c76 to your computer and use it in GitHub Desktop.
Save jfarsen/c330409dffd1a6f870a4182c8e085c76 to your computer and use it in GitHub Desktop.
Check WooCommerce Terms & Conditions by default on checkout
<?php
/**
* checkmark on terms and conditions by default
*/
function arscons_wc_terms( $terms_is_checked ) {
return true;
}
add_filter( 'woocommerce_terms_is_checked_default', 'arscons_wc_terms', 10 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment