You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the WooCommerce Subscriptions core file class-wc-subscriptions-change-payment-gateway.php, located in woocommerce-subscriptions-core/includes, there is an error on line 297. The billing city is incorrectly being set to the postcode value when changing the payment gateway for a subscription. The line reads:
In the WooCommerce Subscriptions core file class-wc-subscriptions-change-payment-gateway.php, located in woocommerce-subscriptions-core/includes, there is an error on line 297. The billing city is incorrectly being set to the postcode value when changing the payment gateway for a subscription. The line reads:
$subscription_billing_city = $subscription->get_billing_postcode();
It should be:
$subscription_billing_city = $subscription->get_billing_city();
Regards,
The text was updated successfully, but these errors were encountered: