Forked from femiyb/remove_confirm_email_password.php
Last active
February 23, 2024 13:25
-
-
Save kimwhite/61ec4f12fbcb66e3d3a9467931c37f0c 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"); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment