Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save JarrydLong/399cef83e9eec8f0da117b503a41bd5d to your computer and use it in GitHub Desktop.

Select an option

Save JarrydLong/399cef83e9eec8f0da117b503a41bd5d to your computer and use it in GitHub Desktop.
<?php //do not copy
/**
* Removes the Map address fields from the checkout page
* when using Member Directory 2.1+
*/
function mypmpro_remove_map_fields_checkout() {
remove_action( 'init', 'pmpromd_add_user_fields' );
}
add_action( 'init', 'mypmpro_remove_map_fields_checkout' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment