diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fed17c..b56b849 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2023-07-19 4.6.10 +* Abandoned cart transfer fix + ## 2023-07-19 4.6.9 * Changed the logic of customer subscriptions to promotional newsletters diff --git a/VERSION b/VERSION index a41324d..e26a327 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.6.9 \ No newline at end of file +4.6.10 \ No newline at end of file diff --git a/src/include/class-wc-retailcrm-cart.php b/src/include/class-wc-retailcrm-cart.php index eea4235..9f2db21 100644 --- a/src/include/class-wc-retailcrm-cart.php +++ b/src/include/class-wc-retailcrm-cart.php @@ -38,7 +38,8 @@ if (!class_exists('WC_Retailcrm_Carts')) : $crmCart = [ 'customer' => ['externalId' => $customerId], 'clearAt' => null, - 'updatedAt' => date($this->dateFormat) + 'updatedAt' => date($this->dateFormat), + 'droppedAt' => date($this->dateFormat) ]; // If new cart, need set createdAt and externalId diff --git a/src/readme.txt b/src/readme.txt index 628d205..388e8e5 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla Requires PHP: 7.0 Requires at least: 5.3 Tested up to: 6.2 -Stable tag: 4.6.9 +Stable tag: 4.6.10 License: GPLv1 or later License URI: http://www.gnu.org/licenses/gpl-1.0.html @@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i == Changelog == += 4.6.10 = +* Abandoned cart transfer fix + = 4.6.9 = * Changed the logic of customer subscriptions to promotional newsletters diff --git a/src/retailcrm.php b/src/retailcrm.php index 1dbb47e..cedfb0d 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -5,7 +5,7 @@ * Description: Integration plugin for WooCommerce & Simla.com * Author: RetailDriver LLC * Author URI: http://retailcrm.pro/ - * Version: 4.6.9 + * Version: 4.6.10 * Tested up to: 6.2 * WC requires at least: 5.4 * WC tested up to: 7.8 diff --git a/src/uninstall.php b/src/uninstall.php index b1b18b3..44a93bc 100644 --- a/src/uninstall.php +++ b/src/uninstall.php @@ -16,7 +16,7 @@ * * @link https://wordpress.org/plugins/woo-retailcrm/ * - * @version 4.6.9 + * @version 4.6.10 * * @package RetailCRM */