alex91ckua

Modify woocommerce billing phone

Jul 14th, 2020 (edited)
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. function change_billing_phone_number (null, $order) {
  2.   $billing_phone = $order->get_billing_phone();
  3.   $billing_phone = str_replace('+', '00', $billing_phone);
  4.   $order->set_billing_phone($billing_phone);
  5.   $order_id = $order->save();
  6.  
  7.   return $order_id;
  8. }
  9. add_filter( 'woocommerce_create_order', 'change_billing_phone_number', 10, 2);
Add Comment
Please, Sign In to add comment