Skip to content

Instantly share code, notes, and snippets.

@pippinsplugins
Created January 28, 2014 19:14
Show Gist options
  • Select an option

  • Save pippinsplugins/8674199 to your computer and use it in GitHub Desktop.

Select an option

Save pippinsplugins/8674199 to your computer and use it in GitHub Desktop.
Removes the state field from the required fields on checkout
<?php
function pw_edd_remove_state_from_required_fields( $fields ) {
if( array_key_exists( 'card_state', $fields ) ) {
unset( $fields['card_state'] );
}
return $fields;
}
add_filter( 'edd_purchase_form_required_fields', 'pw_edd_remove_state_from_required_fields' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment