Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Created November 6, 2012 21:06
Show Gist options
  • Save strangerstudios/4027538 to your computer and use it in GitHub Desktop.
Save strangerstudios/4027538 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