Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author cusrev

    (@ivole)

    Thanks for trying my plugin!

    Unfortunately, it is not possible to do it automatically. The automatic trigger works only when status of an order is changed to “completed”. If you want to send review reminder earlier, you can always do it manually from “Orders” page (e.g., after marking an order as “shipped”).

    I hope it helps!

    Thread Starter consumedesign

    (@consumedesign)

    I figured it out. It’s a good plug in but lacking features, hopefully you will add some more down the road based on feedback. Anyhow, my solution in case someone else is interested:

    
    add_action( 'woocommerce_order_status_order-shipped', 'schedule_reminder_email');
    function schedule_reminder_email($order_id, $instance) {
    	if ( class_exists( 'Ivole_Sender' ) ) :
    		$new_ivole_sender = new Ivole_Sender();
    		$new_ivole_sender->sender_trigger( $order_id );
    	endif;
    }
    

    Using the WooCommerce Order Status Manager to create a new Shipping Status (for my client). You could always do it via the functions.php as well.

    • This reply was modified 6 years, 9 months ago by consumedesign.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Completed To Shipped?’ is closed to new replies.