Hi, You select option generate coupons after complete order?
Where can I find this option?
oh, I found it.
Thanks anyways. but could you please make it so that it automatically generates the coupon? would make it so much easier since I have to do about 100-200 orders a day.
Also would be nice to add the coupon to the “WooCommerce Complete Order” mail
You can select all items and send all in one action. Its not necesary send one by one.
Its imposible to send automatically, beacause you need to check if orders is correctly payed on Redsys, paypal….
Its a good idea to send coupons on woocommerce complete order. Its posible we make an update…
Thanks.
Hi. Now this plugin generate coupons automatically.
wohoo, gonna test it out 😀
Ok, this plugin send automatically coupons after status order change “Completed”, if you want to change automatically this status when buyer finish… you need this in your functions.php of your theme:
add_action( ‘woocommerce_thankyou’,’mymodule_woocommerce_auto_complete_order’ );
function mymodule_woocommerce_auto_complete_order( $order_id ) {
if ( ! $order_id ) {
return;
}
$order = wc_get_order( $order_id );
$order->update_status( ‘completed’ );
}