mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
210 B
Text
5 lines
210 B
Text
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 );
|