Forked from strangerstudios/gist:4027538
Last active
October 19, 2022 18:25
Star
You must be signed in to star a gist
Hide the confirm email and confirm password fields from the Paid Memberships Pro checkout page.
This file contains 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 | |
/* | |
* Don't show confirm password or email fields on the checkout page. | |
* | |
* 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/ | |
*/ | |
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