Can't able to place order as guest user
-
when i click on the confirm button than getting these errors picture is attached below.
changed js code in Webkul/shop/src/resources/views/checkout/onepage/addresses/index.blade.php
if (!Array.isArray(params.billing?.address1)) {
params.billing = Object.assign({}, params.billing);params.billing.address1 = params.billing.address1.split('\n');
}if (!Array.isArray(params.shipping?.address1)) {
params.shipping = Object.assign({}, params.shipping);params.shipping.address1 = params.shipping.address1.split('\n');
}TO
if (!Array.isArray(params.billing?.address1) && params.billing?.address1) {
params.billing = Object.assign({}, params.billing);params.billing.address1 = params.billing.address1.split('\n');
}if (!Array.isArray(params.shipping?.address1) && params.shipping?.address1) {
params.shipping = Object.assign({}, params.shipping);params.shipping.address1 = params.shipping.address1.split('\n');
} -
Hello @haseebkamboh
Greetings of the day..!!
Can you please let us know which Bagisto version are you using right now.
Thanks & Regards..!!
-
This post is deleted! -
@Rishabh-Webkul v2.1.0
-
Hello @haseebkamboh
In Version 2.1.0 there is a minor issue with checkout, we are working on it. Will be dropping a minor release soon to fix this.
Thanks & Regards..!!
-
Hello @haseebkamboh
Greetings of the day..!!
We have got the minor release, please take a pull from here: https://github.com/bagisto/bagisto/releases/tag/v2.1.1
Thanks & Regards..!!