Hi,
I have tried to replicate the issue at our end. But unfortunately I am unable to reproduce the same. I am able to receive recovery email once I had placed an order from abandoned cart reminder email. Please check the screenshot: https://www.screencast.com/t/wzZeLwfhAFo
I had gone through the code and we found an issue with the “wp_” prefix when we are sending a recovery email to Admin.
So, could you please change the below code in line number 1390 to 1398 in the “woocommerce-ac.php” file? The file will be present in the plugin’s core “woocommerce-abandoned-cart” folder.
function wcal_check_order_is_recovered( $wcal_order_id ) {
global $wpdb;
$wcal_recover_order_query = “SELECT recovered_cart
FROM `
” . $wpdb->prefix .
“ac_abandoned_cart_history_liteWHERE
recovered_cart` = %d”;
$wcal_recover_order_query_result = $wpdb->get_results( $wpdb->prepare(
$wcal_recover_order_query, $wcal_order_id ) );
if( count( $wcal_recover_order_query_result ) > 0 ) {
return true;
}
return false;
}
If still if you face the same issue then kindly drop your email drop us an email on “support at tychesoftwares dot freshdesk dot com” where we can more communicate on it and give the fix for this.
Regards,
Chetna Bhutka