Adding instructons for local pickup
-
Hi! I’m trying to customize an email when a customer selects, “Local Pickup.”
I tried adding this to my funtions.php
add_action( 'woocommerce_email_before_order_table', 'add_order_email_instructions', 10, 2 ); function add_order_email_instructions( $order, $sent_to_admin ) { if ( ! $sent_to_admin ) { if ( 'local_pickup' == $order->shipping_methods ) { // local pickup echo '<p><strong>Instructions:</strong> These are the local pickup instructions.</p>'; } else { // other methods (ie table rates) echo '<p><strong>These are the instructions for everything else</p>'; } } }But it doesn’t seem to be working 🙁
Can someone suggest a fix?
Thanks!
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
The topic ‘Adding instructons for local pickup’ is closed to new replies.