Hi Cedric,
Thank you for sharing the error message of our plugin.
Can you please let me know the warning was generated in every minute or in every 15 minutes?
I have applied the fix on our staging server. The PHP notice is because of the variable has no result. So we need to check that if the result is empty or not.
To fix the issue, you need to update the below code in our plugin file. You have to change the line number 77 in the “wcal_send_email.php” file. The file is located at “woocommerce-abandoned-cart / cron” folder of our plugin. And you can find the code in the “wcal_send_email_notification” function of the same file.
The code is:
$value->user_email = $results_guest[0]->email_id;
Replace with:
if( !empty( $results_guest[0]->email_id ) ) {
$value->user_email = $results_guest[0]->email_id;
}
Can you please change the code and confirm that issue is fixed or not by monitoring error log file? If you are not comfortable in editing the file, then we can do it for you. Please create the forum on the below link.
Below is our plugin’s forum page link:
https://www.tychesoftwares.com/forums/forum/woocommerce-abandon-cart-pro/
Note:
We will fix this issue in our next plugin update. So you can update the plugin to the latest version.
Please let me know if you have any further queries.
Regards,
Chetna Bhutka
-
This reply was modified 7 years, 2 months ago by chetnapatel.
-
This reply was modified 7 years, 2 months ago by chetnapatel.