Guest User

Untitled

a guest
Jan 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'woocommerce_email_after_order_table', 'ts_email_after_order_table', 10, 4 );
  4.  
  5. function ts_email_after_order_table( $order, $sent_to_admin, $plain_text, $email ) {
  6. if ( $order->has_status( 'completed' ) ) : ?>
  7. <p><?php printf( __( 'Hey %1$s. Thanks for shopping with us. As a way of saying thanks, here is your coupon code for your next purchase : %2$s' ), $order->get_billing_first_name(), '<strong>FLAT50</strong>' ); ?></p>
  8. <?php endif;
  9. }
Add Comment
Please, Sign In to add comment