Skip to content

Instantly share code, notes, and snippets.

@kimcoleman
Forked from strangerstudios/gist:4027538
Last active October 19, 2022 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimcoleman/37295c2ff7b9be0e70d0016cc26c3312 to your computer and use it in GitHub Desktop.
Save kimcoleman/37295c2ff7b9be0e70d0016cc26c3312 to your computer and use it in GitHub Desktop.
Hide the confirm email and confirm password fields from the Paid Memberships Pro checkout page.
<?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