Advertisement
Guest User

Untitled

a guest
Mar 19th, 2014
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function custom_wcbcf_billing_fields( $fields ) {
  2. global $woocommerce;
  3. if ($woocommerce->customer->get_country() != 'BR') {
  4. $fields['billing_state']['required'] = false;
  5. $fields['billing_cpf']['required'] = false;
  6. $fields['billing_cpf']['class'] = array('esconde-meu-div');
  7. }
  8. return $fields;
  9. }
  10.  
  11. add_filter( 'wcbcf_billing_fields', 'custom_wcbcf_billing_fields' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement