Last active
December 2, 2021 18:54
-
-
Save femiyb/7d2aea3f74e5ed6768846598e6f184ca to your computer and use it in GitHub Desktop.
Remove Confirm Email and Password
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 } ); |
I know unset should just set the fields as not required and the CSS hides the fields, I'll test again to confirm
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
Is the .css necessary? It appears to hide fields without it.