Advertisement
wpgenie

include auction ID in bid note email subject (or any other product info available)

Oct 3rd, 2022
1,037
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. // include auction ID in bid note email subject (or any other product info available)
  2.  
  3. add_filter('woocommerce_email_subject_bid_note', 'tgg_woocommerce_email_subject_auction_win', 1, 2);
  4.  
  5. function tgg_woocommerce_email_subject_auction_win( $subject, $product ) {
  6.  
  7.     $subject = "Congratulations!! You have won auction ". $product->get_id();
  8.     return $subject;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement