Abandoned Cart Lite for WooCommerce - Version 4.1

Version Description

(11.07.2017) =

  • This version has 1 bug fix.

  • Bug Fixed - Some warning was displayed in the Debug log file. This has been fixed.

Download this release

Release Info

Developer bhavik.kiri
Plugin Icon 128x128 Abandoned Cart Lite for WooCommerce
Version 4.1
Comparing to
See all releases

Code changes from version 4.0 to 4.1

Files changed (2) hide show
  1. readme.txt +12 -0
  2. woocommerce-ac.php +2 -2
readme.txt CHANGED
@@ -178,6 +178,12 @@ You can refer **[here](https://www.tychesoftwares.com/differences-between-pro-an
178
 
179
  == Changelog ==
180
 
 
 
 
 
 
 
181
  = 4.0 (04.07.2017) =
182
 
183
  * This version has 1 bug fix.
@@ -445,6 +451,12 @@ For existing users, this setting will remain unchecked. For new users of the plu
445
 
446
  == Upgrade Notice ==
447
 
 
 
 
 
 
 
448
  = 4.0 (04.07.2017) =
449
 
450
  * This version has 1 bug fix.
178
 
179
  == Changelog ==
180
 
181
+ = 4.1 (11.07.2017) =
182
+
183
+ * This version has 1 bug fix.
184
+
185
+ * Bug Fixed - Some warning was displayed in the Debug log file. This has been fixed.
186
+
187
  = 4.0 (04.07.2017) =
188
 
189
  * This version has 1 bug fix.
451
 
452
  == Upgrade Notice ==
453
 
454
+ = 4.1 (11.07.2017) =
455
+
456
+ * This version has 1 bug fix.
457
+
458
+ * Bug Fixed - Some warning was displayed in the Debug log file. This has been fixed.
459
+
460
  = 4.0 (04.07.2017) =
461
 
462
  * This version has 1 bug fix.
woocommerce-ac.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Abandoned Cart Lite for WooCommerce
4
  Plugin URI: http://www.tychesoftwares.com/store/premium-plugins/woocommerce-abandoned-cart-pro
5
  Description: This plugin captures abandoned carts by logged-in users & emails them about it. <strong><a href="http://www.tychesoftwares.com/store/premium-plugins/woocommerce-abandoned-cart-pro">Click here to get the PRO Version.</a></strong>
6
- Version: 4.0
7
  Author: Tyche Softwares
8
  Author URI: http://www.tychesoftwares.com/
9
  Text Domain: woocommerce-ac
@@ -283,7 +283,7 @@ if( !class_exists( 'woocommerce_abandon_cart_lite' ) ) {
283
  * Then We are deleteing those order. But for those orders Recovered email has been set to the Admin.
284
  * Below code ensure that admin recovery email wil not be sent for tose orders.
285
  */
286
- $get_user_id_of_abandoned_cart = "SELECT * FROM `" . $wpdb->prefix . "ac_abandoned_cart_history` WHERE id = %d ";
287
  $get_results_of_user_id = $wpdb->get_results ( $wpdb->prepare( $get_user_id_of_abandoned_cart, $abandoned_cart_id_new_user ) );
288
  $user_id = $get_results_of_user_id[0]->user_id;
289
 
3
  Plugin Name: Abandoned Cart Lite for WooCommerce
4
  Plugin URI: http://www.tychesoftwares.com/store/premium-plugins/woocommerce-abandoned-cart-pro
5
  Description: This plugin captures abandoned carts by logged-in users & emails them about it. <strong><a href="http://www.tychesoftwares.com/store/premium-plugins/woocommerce-abandoned-cart-pro">Click here to get the PRO Version.</a></strong>
6
+ Version: 4.1
7
  Author: Tyche Softwares
8
  Author URI: http://www.tychesoftwares.com/
9
  Text Domain: woocommerce-ac
283
  * Then We are deleteing those order. But for those orders Recovered email has been set to the Admin.
284
  * Below code ensure that admin recovery email wil not be sent for tose orders.
285
  */
286
+ $get_user_id_of_abandoned_cart = "SELECT * FROM `" . $wpdb->prefix . "ac_abandoned_cart_history_lite` WHERE id = %d ";
287
  $get_results_of_user_id = $wpdb->get_results ( $wpdb->prepare( $get_user_id_of_abandoned_cart, $abandoned_cart_id_new_user ) );
288
  $user_id = $get_results_of_user_id[0]->user_id;
289