Skip to content

Instantly share code, notes, and snippets.

@femiyb
Last active December 2, 2021 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save femiyb/7d2aea3f74e5ed6768846598e6f184ca to your computer and use it in GitHub Desktop.
Save femiyb/7d2aea3f74e5ed6768846598e6f184ca 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");
add_action( 'wp_head', function () { ?>
<style>
/* write your CSS code here */
.pmpro_checkout-field.pmpro_checkout-field-password2 {
display: none;
}
.pmpro_checkout-field.pmpro_checkout-field-bconfirmemail {
display: none;
}
</style>
<?php } );
@kimwhite
Copy link

Is the .css necessary? It appears to hide fields without it.

@femiyb
Copy link
Author

femiyb commented Nov 23, 2020

I know unset should just set the fields as not required and the CSS hides the fields, I'll test again to confirm

@kimwhite
Copy link

I think the other filters clear them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment