• I am looking for a plugin that offers two different registration forms. One for silver and one (with extra fields) for gold.
    When a member wants to upgrade he needs to fill out the estra (gold) fields.
    Is this possible.
    Is the flow register -> pay possible or do members first need to pay before they get directed to the registration form?
    Does this plugin work with Facebook or Social login?

    Thanks,
    Anneke

    http://wordpress.org/extend/plugins/paid-memberships-pro/

Viewing 1 replies (of 1 total)
  • Plugin Author Jason Coleman

    (@strangerstudios)

    Anneke,

    The plugin overrides the WP signup form. However, you can disable that with this code:

    function my_pmpro_login_redirect($login)
    {
    return false;
    }
    add_filter("pmpro_login_redirect", "my_pmpro_login_redirect");

    You can also create a free membership level.

    With PMPro the user registration and payment happens at the same time. Existing users can also checkout.

    I haven’t tested PMPro with a Facebook/Social connect plugin. I assume it would work. Let me know if it doesn’t.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Paid Memberships Pro] Registration flow’ is closed to new replies.