Advertisement
wclovers

Untitled

Feb 22nd, 2022
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. add_filter( 'wcfm_membership_registration_fields_address', function( $fields ) {
  2.     if( isset( $fields['zip'] ) && isset( $fields['zip']['custom_attributes'] ) ) {
  3.         if( isset( $fields['zip']['custom_attributes']['required'] ) ) {
  4.             unset( $fields['zip']['custom_attributes']['required'] );
  5.         }
  6.     }
  7.     return $fields;
  8. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement