mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
9 lines
238 B
Text
9 lines
238 B
Text
function no_coupon_checkout_function() {
|
|
if ( !is_user_logged_in() ) {
|
|
|
|
remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 );
|
|
|
|
}
|
|
}
|
|
|
|
add_action('init', 'no_coupon_checkout_function');
|