Integration with WooCommerce Subscriptions
Our plugin is compatible with WooCommerce Subscriptions. The compatibility ensures that the plugin sends only one automatic reminder after a customer purchased a subscription product. The reminder is sent for the first order associated with a subscription. No additional reminders are scheduled after renewal orders for the same subscription.
Review Reminders for Renewal Orders
If you would like to override the default behavior of the plugin and send review reminders for every renewal order, please add the following code snippet to the functions.php file of your current WordPress theme.
add_filter( 'cr_skip_renewal_order', 'cr_skip_renewal_order_filter' ); function cr_skip_renewal_order_filter( $skip_renewal_order ) { return false; }