Skip to content

Instantly share code, notes, and snippets.

@BurlesonBrad
Created September 18, 2016 19:49
Show Gist options
  • Save BurlesonBrad/de00be7377aa1dca37ce5e3801ba0838 to your computer and use it in GitHub Desktop.
Save BurlesonBrad/de00be7377aa1dca37ce5e3801ba0838 to your computer and use it in GitHub Desktop.
Automatically check Terms of Service box in WooCommerce https://bradgriffin.me/woocommerce
function bkg_autocheck_tos( $terms_is_checked ) {
return true;
}
add_filter( 'woocommerce_terms_is_checked', 'bkg_autocheck_tos', 10 );
add_filter( 'woocommerce_terms_is_checked_default', 'bkg_autocheck_tos', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment