Payment Failed

Payment Failed

We’re sorry, but your transaction failed to process. Please try again or contact site support.
add_filter( 'woocommerce_billing_fields', 'wc_optional_billing_fields', 10, 1 ); function wc_optional_billing_fields( $address_fields ) { $address_fields['billing_address_1']['required'] = false; $address_fields['billing_address_2']['required'] = false; return $address_fields; }