Razorpay for WooCommerce - Version 3.9.3

Version Description

  • Bug fix multiple shipping charges issue for magic checkout.
Download this release

Release Info

Developer razorpay
Plugin Icon 128x128 Razorpay for WooCommerce
Version 3.9.3
Comparing to
See all releases

Code changes from version 3.9.2 to 3.9.3

Files changed (2) hide show
  1. readme.txt +4 -1
  2. woo-razorpay.php +4 -4
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: razorpay
3
  Tags: razorpay, payments, india, woocommerce, ecommerce
4
  Requires at least: 3.9.2
5
  Tested up to: 5.9
6
- Stable tag: 3.9.2
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -41,6 +41,9 @@ This is compatible with WooCommerce>=2.4, including the new 3.0 release. It has
41
 
42
  == Changelog ==
43
 
 
 
 
44
  = 3.9.2 =
45
  * Bug fix cart line item char limit issue for magic checkout.
46
  * Bug fix callback issue in order placed through admin panel.
3
  Tags: razorpay, payments, india, woocommerce, ecommerce
4
  Requires at least: 3.9.2
5
  Tested up to: 5.9
6
+ Stable tag: 3.9.3
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
41
 
42
  == Changelog ==
43
 
44
+ = 3.9.3 =
45
+ * Bug fix multiple shipping charges issue for magic checkout.
46
+
47
  = 3.9.2 =
48
  * Bug fix cart line item char limit issue for magic checkout.
49
  * Bug fix callback issue in order placed through admin panel.
woo-razorpay.php CHANGED
@@ -3,8 +3,8 @@
3
  * Plugin Name: Razorpay for WooCommerce
4
  * Plugin URI: https://razorpay.com
5
  * Description: Razorpay Payment Gateway Integration for WooCommerce
6
- * Version: 3.9.2
7
- * Stable tag: 3.9.2
8
  * Author: Team Razorpay
9
  * WC tested up to: 6.4.1
10
  * Author URI: https://razorpay.com
@@ -1500,8 +1500,8 @@ EOT;
1500
 
1501
  if (sizeof($existingItems) != 0) {
1502
  // Loop through shipping items
1503
- foreach ($existingItems as $existingItemId) {
1504
- $order->remove_item($existingItemId);
1505
  }
1506
  }
1507
 
3
  * Plugin Name: Razorpay for WooCommerce
4
  * Plugin URI: https://razorpay.com
5
  * Description: Razorpay Payment Gateway Integration for WooCommerce
6
+ * Version: 3.9.3
7
+ * Stable tag: 3.9.3
8
  * Author: Team Razorpay
9
  * WC tested up to: 6.4.1
10
  * Author URI: https://razorpay.com
1500
 
1501
  if (sizeof($existingItems) != 0) {
1502
  // Loop through shipping items
1503
+ foreach ($existingItems as $existingItemKey => $existingItemVal) {
1504
+ $order->remove_item($existingItemKey);
1505
  }
1506
  }
1507