basvweb
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Country not shownI have tried this but still no country is shown.. Is this because the country is the same as the shop country location?
Do you have this issue also?
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Company nameI don’t get how I can get the Company name..
Forum: Plugins
In reply to: [WooCommerce] Remove HashtagHi @abwaita @gabrielfuentes ,
The # is still shown when I click to view an order in the front-end on my account page. How do I delete this?
Hi @yordansoares ,
So it is not possible to show the invoice number in the email content?
Forum: Plugins
In reply to: [Advanced Shipment Tracking for WooCommerce] CC or BCC Shipping mailHi @zorem ,
I have found a code that will do the trick!
add_filter( 'woocommerce_email_headers', 'bbloomer_order_completed_email_add_cc_bcc', 9999, 3 ); function bbloomer_order_completed_email_add_cc_bcc( $headers, $email_id, $order ) { if ( 'customer_partial_shipped_order' == $email_id ) { $headers .= "Bcc: Name <[email protected]>\r\n"; // delete if not needed } return $headers; }
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Text crossoverHi @yordansoares ,
Okay, I have send an email.
Forum: Plugins
In reply to: [WooCommerce] Remove Hashtag@gabrielfuentes Thank you so much.
Is there a way I can do this in my Functions.php so I can update WooCommerce without any changes?
Here is a better one: @yordansoares
Forum: Plugins
In reply to: [Advanced Shipment Tracking for WooCommerce] CC or BCC Shipping mailBut I did not replace Completed with Shipped.. I want the ‘Partially shipped’ email to have a CC or BCC
Forum: Plugins
In reply to: [WooCommerce] Hide DiscountHi,
But is there a way I can edit prices in the order and just hide the discount from the confirmation mail?
Forum: Plugins
In reply to: [WooCommerce] Remove HashtagHi @conschneider ,
I would like the # to be removed from the order confirmation mail and order confirmation page right after you ordered.
Hi @yordansoares ,
Here: https://ibb.co/pz2SKKm
Forum: Plugins
In reply to: [WooCommerce] Hide DiscountHi @gabrielfuentes ,
Yes I want to create an order manually in the backend and make some products cheaper but when I do this the order notification email shows:
Product Price: $400
Subtotal: $400
Discount: -$200
Total: $200But I only want it to say:
Product Price: $200
Total: $200Forum: Plugins
In reply to: [WooCommerce] Shipping DetailsHi @rainfallnixfig ,
This works! Thank you so much!