• Resolved Howdy_McGee

    (@howdy_mcgee)


    Is it possible to edit how the Registration Displays? By default currently it will list the levels from top to bottom and you pick one that suits your needs. Ideally I would like to have a single form with either a dropdown or radio buttons where the user picks their subscription / membership plan. Is there a filter / template I can edit so I can programmatically achieve this? If I manually add extra user meta, can I edit the registration form to also add these textboxes to capture this information?

    https://ww.wp.xz.cn/plugins/membership/

Viewing 1 replies (of 1 total)
  • Hi @howdy_mcgee,

    I hope you are well today and thank you for your question.

    Yes it possible to edit the Registration page.

    You can either use the following hooks declared in the below Membership plugin Registration template file.

    Plugin File:
    /wp-content/plugins/membership/membershipincludes/includes/subscription.form.php

    Hooks:
    membership_subscription_form_before_subscriptions
    membership_override_subscriptions
    membership_subscription_signup_text
    membership_subscription_form_after_subscriptions

    Or you can totally edit this registration page by copying the above subscription.form.php file from membership plugin in to the root folder of your child theme and edit it however you want to.

    If you want to overwrite subscription.form.php file in your child theme then add the following code in the functions.php file of your child theme.

    function custom_membership_override_subscription_form(){
    	return get_stylesheet_directory().'/subscription.form.php';
    }
    add_filter( 'membership_override_subscription_form', 'custom_membership_override_subscription_form' );

    Best Regards,
    Vinod Dalvi

Viewing 1 replies (of 1 total)

The topic ‘Custom Registration Form’ is closed to new replies.