Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2014
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. function custon_wcbcf_billing_fields( $fields ) {
  2.     $fields['billing_number']['required'] = false;
  3.  
  4.     return $fields;
  5. }
  6.  
  7. add_filter( 'wcbcf_billing_fields', 'custon_wcbcf_billing_fields' );
  8.  
  9. function custon_wcbcf_shipping_fields( $fields ) {
  10.     $fields['shipping_number']['required'] = false;
  11.  
  12.     return $fields;
  13. }
  14.  
  15. add_filter( 'wcbcf_shipping_fields', 'custon_wcbcf_shipping_fields' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement