Version Description
(10.02.2020) = * Update compatibility with WooCommerce 4.0.0. * Tweak - Add a filter to modify the product name for variable products in reminder emails.
Download this release
Release Info
Developer | Dhruvin |
Plugin | Abandoned Cart Lite for WooCommerce |
Version | 5.7.2 |
Comparing to | |
See all releases |
Code changes from version 5.7.1 to 5.7.2
- readme.txt +6 -2
- woocommerce-ac.php +3 -3
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
|
2 |
=== Abandoned Cart Lite for WooCommerce ===
|
3 |
Contributors: ashokrane, pinal.shah, bhavik.kiri, chetnapatel, tychesoftwares, dhruvin
|
4 |
-
Tags: cart abandonment, abandon cart, cart recovery,
|
5 |
Author URI: https://www.tychesoftwares.com/
|
6 |
Requires at least: 1.3
|
7 |
-
Tested up to: 5.
|
8 |
Stable tag: trunk
|
9 |
Requires PHP: 5.6
|
10 |
License: GPLv2 or late
|
@@ -220,6 +220,10 @@ The admin can use the merge code `{{cart.unsubscribe}}' in the email templates.
|
|
220 |
6. Product Report Tab.
|
221 |
|
222 |
== Changelog ==
|
|
|
|
|
|
|
|
|
223 |
= 5.7.1 (10.02.2020) =
|
224 |
|
225 |
* Tweak - Bots and Crawlers used to log lot of Abandoned Carts. We have now prevented logging such carts and now only genuine carts will be tracked.
|
1 |
|
2 |
=== Abandoned Cart Lite for WooCommerce ===
|
3 |
Contributors: ashokrane, pinal.shah, bhavik.kiri, chetnapatel, tychesoftwares, dhruvin
|
4 |
+
Tags: cart abandonment, abandon cart, cart recovery, recover woocommerce cart, increase woocommerce conversion rate, increase sales with woocommerce
|
5 |
Author URI: https://www.tychesoftwares.com/
|
6 |
Requires at least: 1.3
|
7 |
+
Tested up to: 5.4
|
8 |
Stable tag: trunk
|
9 |
Requires PHP: 5.6
|
10 |
License: GPLv2 or late
|
220 |
6. Product Report Tab.
|
221 |
|
222 |
== Changelog ==
|
223 |
+
= 5.7.2 (10.02.2020) =
|
224 |
+
* Update compatibility with WooCommerce 4.0.0.
|
225 |
+
* Tweak - Add a filter to modify the product name for variable products in reminder emails.
|
226 |
+
|
227 |
= 5.7.1 (10.02.2020) =
|
228 |
|
229 |
* Tweak - Bots and Crawlers used to log lot of Abandoned Carts. We have now prevented logging such carts and now only genuine carts will be tracked.
|
woocommerce-ac.php
CHANGED
@@ -5,14 +5,14 @@
|
|
5 |
* Description: This plugin captures abandoned carts by logged-in users & emails them about it.
|
6 |
* <strong><a href="http://www.tychesoftwares.com/store/premium-plugins/woocommerce-abandoned-cart-pro">Click here to get the
|
7 |
* PRO Version.</a></strong>
|
8 |
-
* Version: 5.7.
|
9 |
* Author: Tyche Softwares
|
10 |
* Author URI: http://www.tychesoftwares.com/
|
11 |
* Text Domain: woocommerce-abandoned-cart
|
12 |
* Domain Path: /i18n/languages/
|
13 |
* Requires PHP: 5.6
|
14 |
* WC requires at least: 3.0.0
|
15 |
-
* WC tested up to:
|
16 |
*
|
17 |
* @package Abandoned-Cart-Lite-for-WooCommerce
|
18 |
*/
|
@@ -78,7 +78,7 @@ if ( ! class_exists( 'woocommerce_abandon_cart_lite' ) ) {
|
|
78 |
}
|
79 |
|
80 |
if ( ! defined( 'WCAL_PLUGIN_VERSION' ) ) {
|
81 |
-
define( 'WCAL_PLUGIN_VERSION', '5.7.
|
82 |
}
|
83 |
$this->one_hour = 60 * 60;
|
84 |
$this->three_hours = 3 * $this->one_hour;
|
5 |
* Description: This plugin captures abandoned carts by logged-in users & emails them about it.
|
6 |
* <strong><a href="http://www.tychesoftwares.com/store/premium-plugins/woocommerce-abandoned-cart-pro">Click here to get the
|
7 |
* PRO Version.</a></strong>
|
8 |
+
* Version: 5.7.2
|
9 |
* Author: Tyche Softwares
|
10 |
* Author URI: http://www.tychesoftwares.com/
|
11 |
* Text Domain: woocommerce-abandoned-cart
|
12 |
* Domain Path: /i18n/languages/
|
13 |
* Requires PHP: 5.6
|
14 |
* WC requires at least: 3.0.0
|
15 |
+
* WC tested up to: 4.0.0
|
16 |
*
|
17 |
* @package Abandoned-Cart-Lite-for-WooCommerce
|
18 |
*/
|
78 |
}
|
79 |
|
80 |
if ( ! defined( 'WCAL_PLUGIN_VERSION' ) ) {
|
81 |
+
define( 'WCAL_PLUGIN_VERSION', '5.7.2' );
|
82 |
}
|
83 |
$this->one_hour = 60 * 60;
|
84 |
$this->three_hours = 3 * $this->one_hour;
|