Only continue getting checkout value if null
This commit is contained in:
parent
68d2ac5dfe
commit
9b43089562
|
@ -752,7 +752,7 @@ class WC_Checkout {
|
|||
|
||||
$value = apply_filters( 'woocommerce_checkout_get_value', null, $input );
|
||||
|
||||
if ( $value )
|
||||
if ( $value !== null )
|
||||
return $value;
|
||||
|
||||
if ( is_user_logged_in() ) {
|
||||
|
|
Loading…
Reference in New Issue