Advertisement
verygoodplugins

Untitled

Mar 14th, 2020
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. function override_billing_email( $email, $order ) {
  2.  
  3.     $order_data = wp_fusion()->integrations->woocommerce->get_customer_data( $order );
  4.  
  5.     if ( isset( $order_data['additional_participant_email'] ) ) {
  6.         $email = $order_data['additional_participant_email'];
  7.     }
  8.  
  9.     return $email;
  10.  
  11. }
  12.  
  13. add_filter( 'wpf_woocommerce_billing_email', 'override_billing_email', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement