Set the terms and conditions to be checked by default in WooCommerce

Set the terms and conditions to be checked by default in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function check_wc_terms( $terms_is_checked ) {
    return true;
}
add_filter( 'woocommerce_terms_is_checked', 'check_wc_terms', 10 );
add_filter( 'woocommerce_terms_is_checked_default', 'check_wc_terms', 10 );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.