Changeset 3134792
- Timestamp:
- 08/13/2024 09:28:14 AM (19 months ago)
- Location:
- shipany
- Files:
-
- 4 edited
- 1 copied
-
tags/1.1.59 (copied) (copied from shipany/trunk)
-
tags/1.1.59/readme.txt (modified) (2 diffs)
-
tags/1.1.59/shipany-woocommerce.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shipany-woocommerce.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shipany/tags/1.1.59/readme.txt
r3129829 r3134792 4 4 Requires at least: 4.1 5 5 Tested up to: 6.5.5 6 Stable tag: 1.1.5 86 Stable tag: 1.1.59 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 71 71 == Changelog == 72 72 73 = 1.1.59 = 74 - Bug fix 75 73 76 = 1.1.58 = 74 77 - Fix writing wrong country on checkout page -
shipany/tags/1.1.59/shipany-woocommerce.php
r3129829 r3134792 7 7 Plugin URI: http://wordpress.org/plugins/shipany 8 8 Description: ShipAny one-stop logistics platform interconnects WooCommerce to multiple logistics service providers (including SF Express, Kerry Express, SF Cold-Chain, Alfred Locker, Hongkong Post, SF Locker, Convenience Store, etc.) so merchants can enjoy full-set features of logistics automation which disrupt the manual logistics process and bring E-Commerce to new generation. 9 Version: 1.1.5 89 Version: 1.1.59 10 10 Author: ShipAny 11 11 Author URI: https://www.shipany.io … … 133 133 WC()->frontend_includes(); 134 134 wc_load_cart(); 135 $useShippingAsBilling = wc_clean($_POST["useShippingAsBilling"]) == 'yes'; 135 $useShippingAsBilling = false; 136 if(isset($_POST["useShippingAsBilling"]) && $_POST["useShippingAsBilling"]){ 137 $useShippingAsBilling = wc_clean($_POST["useShippingAsBilling"]) == 'yes'; 138 } 136 139 $region = strtoupper(wc_clean($_POST["region"])); 137 140 $bypass_billing_address = ShipanyHelper::get_settings('shipany_bypass_billing_address'); … … 673 676 class SHIPANY_WC { 674 677 public static $list; 675 private $version = "1.1.5 8";678 private $version = "1.1.59"; 676 679 677 680 protected static $_instance = null; -
shipany/trunk/readme.txt
r3129829 r3134792 4 4 Requires at least: 4.1 5 5 Tested up to: 6.5.5 6 Stable tag: 1.1.5 86 Stable tag: 1.1.59 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 71 71 == Changelog == 72 72 73 = 1.1.59 = 74 - Bug fix 75 73 76 = 1.1.58 = 74 77 - Fix writing wrong country on checkout page -
shipany/trunk/shipany-woocommerce.php
r3129829 r3134792 7 7 Plugin URI: http://wordpress.org/plugins/shipany 8 8 Description: ShipAny one-stop logistics platform interconnects WooCommerce to multiple logistics service providers (including SF Express, Kerry Express, SF Cold-Chain, Alfred Locker, Hongkong Post, SF Locker, Convenience Store, etc.) so merchants can enjoy full-set features of logistics automation which disrupt the manual logistics process and bring E-Commerce to new generation. 9 Version: 1.1.5 89 Version: 1.1.59 10 10 Author: ShipAny 11 11 Author URI: https://www.shipany.io … … 133 133 WC()->frontend_includes(); 134 134 wc_load_cart(); 135 $useShippingAsBilling = wc_clean($_POST["useShippingAsBilling"]) == 'yes'; 135 $useShippingAsBilling = false; 136 if(isset($_POST["useShippingAsBilling"]) && $_POST["useShippingAsBilling"]){ 137 $useShippingAsBilling = wc_clean($_POST["useShippingAsBilling"]) == 'yes'; 138 } 136 139 $region = strtoupper(wc_clean($_POST["region"])); 137 140 $bypass_billing_address = ShipanyHelper::get_settings('shipany_bypass_billing_address'); … … 673 676 class SHIPANY_WC { 674 677 public static $list; 675 private $version = "1.1.5 8";678 private $version = "1.1.59"; 676 679 677 680 protected static $_instance = null;
Note: See TracChangeset
for help on using the changeset viewer.