Code-Snippets-Functions/Execute a function on a child site/WooCommerce/remove-the-coupon-field-for-guests.txt

9 lines
244 B
Text

function wc_no_coupon_checkout_function() {
if ( !is_user_logged_in() ) {
remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 );
}
}
add_action('init', 'wc_no_coupon_checkout_function');