Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_action('woocommerce_checkout_init','disable_billing_shipping');
  2. function disable_billing_shipping($checkout){
  3. $checkout->checkout_fields['billing']=array();
  4. $checkout->checkout_fields['shipping']=array();
  5. return $checkout;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement