From 30cb18c1f50546cde363dee930241bd80994ec27 Mon Sep 17 00:00:00 2001 From: rahul shukla Date: Fri, 21 Feb 2020 17:45:47 +0530 Subject: [PATCH] Issue #2538 fixed and change log updated --- CHANGELOG for v1.x.x.md | 4 +++- .../src/Resources/views/shop/checkout/onepage.blade.php | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG for v1.x.x.md b/CHANGELOG for v1.x.x.md index da36aba04..cf0d34e8d 100644 --- a/CHANGELOG for v1.x.x.md +++ b/CHANGELOG for v1.x.x.md @@ -82,7 +82,9 @@ * #2526 [fixed] - Velocity backend route is not accessible in arabic locale. -* #2533 [fixed] - Shipment email notification is not sending to customer +* #2533 [fixed] - Shipment email notification is not sending to customer. + +* #2538 [fixed] - unable to place order for virtual & downloadable product. ## **v1.0.0-BETA1(5th of February 2020)** - *Release* diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/checkout/onepage.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/checkout/onepage.blade.php index 184323563..70383855c 100644 --- a/packages/Webkul/Velocity/src/Resources/views/shop/checkout/onepage.blade.php +++ b/packages/Webkul/Velocity/src/Resources/views/shop/checkout/onepage.blade.php @@ -218,9 +218,11 @@ break; case 'shipping-form': - document.body.style.cursor = 'wait'; - this.saveShipping(); - break; + if (this.showShippingSection) { + document.body.style.cursor = 'wait'; + this.saveShipping(); + break; + } case 'payment-form': document.body.style.cursor = 'wait';