dcurasi
Forum Replies Created
-
Forum: Plugins
In reply to: [CC & BCC for Woocommerce Order Emails] cc on manually sent emails?Hi,
What do you mean with manually sent?
If you mean create the order from the admin panel, the plugin works properly.
Before you save the order, to send the email, select the type of emails you want to send from “Order Actions”.With this procedure, there are no problems.
If the problem is different, please tell me your procedure.
If you like the plugin, please give it a rating.
dcurasi
Forum: Plugins
In reply to: [CC & BCC for Woocommerce Order Emails] order-on-hold email in ccHi,
I added this feature now. Updates the plugin.
If you like the plugin, please give it a rating.
dcurasi
Forum: Plugins
In reply to: [CC & BCC for Woocommerce Order Emails] New user emailHi,
If you mean insert the CC or BCC in the woocommerce new email account, you can. I added this feature now. Updates the plugin.
If you like the plugin, please give it a rating.
dcurasi
Forum: Plugins
In reply to: [CC & BCC for Woocommerce Order Emails] Send CC based on product?Yes, unfortunately it is currently the only solution.
Forum: Plugins
In reply to: [CC & BCC for Woocommerce Order Emails] Send CC based on product?It’s possible, but at present this plugin is not able to do that.
It’s an idea for the next updates.
To do this you should modify the function “custom_headers_email_function” in the file class-dc-dc-bcc-woe-public.php in my plugin.
Take the products of the order and according to them, choose who send the email.
For example:function custom_headers_email_function( $headers, $object ) { global $woocommerce; $items = WC()->cart->get_cart(); $list_products = array(); foreach($items as $item => $values) { $_product = $values['data']->post; array_push($list_products, $_product->ID); } if(get_option('dc_wech_new_order')) { if ($object == 'new_order') { if(in_array(8, $list_products)) { $headers .= 'CC: [email protected]' . "\r\n"; $headers .= 'BCC: ' . get_option('dc_wech_email_list_bcc') . "\r\n"; } } } ... }
sends the new order email to [email protected] only if the product with id = 8 is in the order.
If you like the plugin, please give it a rating.
Dario Curasi
Forum: Reviews
In reply to: [CC & BCC for Woocommerce Order Emails] Great, great !!Thank you so much!
Forum: Plugins
In reply to: [Minimum Order Amount for Woocommerce] Minimum order per shipping methodIn the next version of the plugin you can choose whether to consider the subtotal (shipping costs excluded) or total (including shipping costs) for calculation of the minimum purchase.
Forum: Plugins
In reply to: [Minimum Order Amount for Woocommerce] Minimum order per shipping methodThe shipping method does not affect the minimum order, since these are not considered in the cart subtotal.
- This reply was modified 8 years, 1 month ago by dcurasi.