Skip to content

Instantly share code, notes, and snippets.

@LMNTL
Created September 4, 2019 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LMNTL/42c7973caa6c1a76fbfbfd581a53acb7 to your computer and use it in GitHub Desktop.
Save LMNTL/42c7973caa6c1a76fbfbfd581a53acb7 to your computer and use it in GitHub Desktop.
don't require the "State" field at checkout and hide it
.pmpro_checkout-field-bstate {
display: none;
}
function my_pmpro_required_billing_fields($fields)
{
if(is_array($fields) && isset($fields['bstate'))
{
unset($fields['bstate']);
}
return $fields;
}
add_action('pmpro_required_billing_fields', 'my_pmpro_required_billing_fields');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment