Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eyecandy91/f1651934b5debfd0288e9dc79c3c31f2 to your computer and use it in GitHub Desktop.
Save eyecandy91/f1651934b5debfd0288e9dc79c3c31f2 to your computer and use it in GitHub Desktop.
Hide the confirm email and confirm password fields from the Paid Memberships Pro checkout page.
/*
Don't show confirm password or email fields on the checkout page.
Add this code to your active theme's functions.php or a custom plugin.
*/
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