Changeset 3191772
- Timestamp:
- 11/19/2024 04:31:33 AM (16 months ago)
- Location:
- shipany
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.61 (copied) (copied from shipany/trunk)
-
tags/1.1.61/includes/Utils/ShipanyHelper.php (modified) (1 diff)
-
tags/1.1.61/readme.txt (modified) (2 diffs)
-
tags/1.1.61/shipany-woocommerce.php (modified) (3 diffs)
-
trunk/includes/Utils/ShipanyHelper.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shipany-woocommerce.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shipany/tags/1.1.61/includes/Utils/ShipanyHelper.php
r3115376 r3191772 383 383 ), 384 384 "dim" => array( 385 "len" => count($items) > 1 ? 1 : ( floatval($items[0]['dim']['len']) ?: 1),386 "wid" => count($items) > 1 ? 1 : ( floatval($items[0]['dim']['wid']) ?: 1),387 "hgt" => count($items) > 1 ? 1 : ( floatval($items[0]['dim']['hgt']) ?: 1),385 "len" => count($items) > 1 ? 1 : ((floatval($items[0]['dim']['len']) / 10) ?: 1), 386 "wid" => count($items) > 1 ? 1 : ((floatval($items[0]['dim']['wid']) / 10) ?: 1), 387 "hgt" => count($items) > 1 ? 1 : ((floatval($items[0]['dim']['hgt']) / 10) ?: 1), 388 388 "unt" => 'cm' 389 389 ), -
shipany/tags/1.1.61/readme.txt
r3135438 r3191772 4 4 Requires at least: 4.1 5 5 Tested up to: 6.5.5 6 Stable tag: 1.1.6 06 Stable tag: 1.1.61 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 71 71 == Changelog == 72 72 73 = 1.1.61 = 74 - Bug fix 75 73 76 = 1.1.60 = 74 77 - Enhanced locker listing speed -
shipany/tags/1.1.61/shipany-woocommerce.php
r3135438 r3191772 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.6 09 Version: 1.1.61 10 10 Author: ShipAny 11 11 Author URI: https://www.shipany.io … … 677 677 class SHIPANY_WC { 678 678 public static $list; 679 private $version = "1.1.6 0";679 private $version = "1.1.61"; 680 680 681 681 protected static $_instance = null; … … 1311 1311 $body = wp_remote_retrieve_body($response_merchant); 1312 1312 $body = json_decode($body)->data->objects; 1313 if ($body[0]->activated !== true) {1313 if ($body[0]->activated === false) { 1314 1314 wp_send_json_error(['data' => [ 1315 1315 'error_title' => __('Please activate your account first.', 'shipany'), -
shipany/trunk/includes/Utils/ShipanyHelper.php
r3115376 r3191772 383 383 ), 384 384 "dim" => array( 385 "len" => count($items) > 1 ? 1 : ( floatval($items[0]['dim']['len']) ?: 1),386 "wid" => count($items) > 1 ? 1 : ( floatval($items[0]['dim']['wid']) ?: 1),387 "hgt" => count($items) > 1 ? 1 : ( floatval($items[0]['dim']['hgt']) ?: 1),385 "len" => count($items) > 1 ? 1 : ((floatval($items[0]['dim']['len']) / 10) ?: 1), 386 "wid" => count($items) > 1 ? 1 : ((floatval($items[0]['dim']['wid']) / 10) ?: 1), 387 "hgt" => count($items) > 1 ? 1 : ((floatval($items[0]['dim']['hgt']) / 10) ?: 1), 388 388 "unt" => 'cm' 389 389 ), -
shipany/trunk/readme.txt
r3135438 r3191772 4 4 Requires at least: 4.1 5 5 Tested up to: 6.5.5 6 Stable tag: 1.1.6 06 Stable tag: 1.1.61 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 71 71 == Changelog == 72 72 73 = 1.1.61 = 74 - Bug fix 75 73 76 = 1.1.60 = 74 77 - Enhanced locker listing speed -
shipany/trunk/shipany-woocommerce.php
r3135438 r3191772 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.6 09 Version: 1.1.61 10 10 Author: ShipAny 11 11 Author URI: https://www.shipany.io … … 677 677 class SHIPANY_WC { 678 678 public static $list; 679 private $version = "1.1.6 0";679 private $version = "1.1.61"; 680 680 681 681 protected static $_instance = null; … … 1311 1311 $body = wp_remote_retrieve_body($response_merchant); 1312 1312 $body = json_decode($body)->data->objects; 1313 if ($body[0]->activated !== true) {1313 if ($body[0]->activated === false) { 1314 1314 wp_send_json_error(['data' => [ 1315 1315 'error_title' => __('Please activate your account first.', 'shipany'),
Note: See TracChangeset
for help on using the changeset viewer.