Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kimwhite/61ec4f12fbcb66e3d3a9467931c37f0c to your computer and use it in GitHub Desktop.
Save kimwhite/61ec4f12fbcb66e3d3a9467931c37f0c to your computer and use it in GitHub Desktop.
Remove Confirm Email and Password
<?php
/**
* This recipe will Remove Confirm Email and Confirm Password
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
/**
* Unset required account fields.
*/
function my_required_user_fields( $pmpro_required_user_fields ) {
unset( $pmpro_required_user_fields['password2'] );
unset( $pmpro_required_user_fields['bconfirmemail'] );
return $pmpro_required_user_fields;
}
add_filter( 'pmpro_required_user_fields', 'my_required_user_fields', 10, 2);
add_filter("pmpro_checkout_confirm_password", "__return_false");
add_filter("pmpro_checkout_confirm_email", "__return_false");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment