• Resolved mdt112233

    (@mdt112233)


    Hello,

    I am using a Plugin (RegistrationMagic – Custom Registration Forms, User Registration, Payment, and User Login) for User Registration and Login, It’s working but After registration and Login it’s not redirecting to the page I want, I want it to redirect the home page after login and registration,

    Also I want it to connect with Mailchimp so it automatically collect all the users email ID from user registration to the Mailchimp, I am using MC4WP plugin but I want to know how can i connect it with the Registration Magic Plugin?

    The page I need help with: [log in to see the link]

Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Author Metagauss

    (@metagauss)

    Hi @mdt112233,

    You can setup redirection after login from login form Dashboard -> Redirection settings. The same can be done from the registration form Dashboard -> Post Submission settings.

    To integrate registration forms with MailChimp, you need to first configure the integration from Global settings -> External Integrations and then map the form fields from form Dashboard -> MailChimp settings.

    Thread Starter mdt112233

    (@mdt112233)

    Redirection fixed, Thanks for the support,
    But still facing issues with the Mailchimp integration, I added the Mailchimp API Key into the Global settings?->?External Integrations but now I do not understand how to and where I get the email data and how to get the data in the MC4WP plugin.
    Please guide me in this as well.

    Thanks

    Plugin Author Metagauss

    (@metagauss)

    Hi @mdt112233,

    Once integration is established from Global Settings, you can map your form fields to your MailChimp list from the form’s Dashboard -> MailChimp settings. Then, once a user submits the form, his/her details will automatically be sent to your MailChimp list.

    Thread Starter mdt112233

    (@mdt112233)

    Done, how can I send all of the new users a Welcome mail automatically?

    Plugin Author Metagauss

    (@metagauss)

    Hi @mdt112233,

    If you have an email configured from your MailChimp account upon adding a subscriber to a list, then it will be sent automatically after registration. To setup an auto-responder email from RegistrationMagic, access the form Dashboard -> Auto Responder settings.

    Thread Starter mdt112233

    (@mdt112233)

    Hello,

    I created a Drop down form and now i wanted like whenever user submit this form user will get 10 points and I am using Mycred plugin for Reward Points system, So how can i connect the form submission with mycred?

    Thread Starter mdt112233

    (@mdt112233)

    Hello,

    I created a Drop-down form and now i want like whenever a user submits this form user will get 10 points I am using the Mycred plugin for the Reward Points system, So how can i connect the form submission with Mycred?

    Plugin Author Metagauss

    (@metagauss)

    Hi @mdt112233,

    RegistrationMagic doesn’t support an integration with MyCred. We have noted your requirement though and will plan on adding this to our plugin in the future.

    Thread Starter mdt112233

    (@mdt112233)

    Is there any manual process I can do to make it possible to work with Mycred like if I can do with code modification or something? Because I want to use your plugin for the registration and Forms on my site but I also want to use Mycred to award the rewards to the users.

    Please help me with this.

    Thanks

    Plugin Author Metagauss

    (@metagauss)

    Hi @mdt112233,

    You can use the hook ‘rm_submission_completed‘ to add your own custom code to RegistrationMagic’s form submission process.

    Thread Starter mdt112233

    (@mdt112233)

    Can you please guide me this in more detail

    Plugin Author Metagauss

    (@metagauss)

    Hi @mdt112233,

    You can use the following code format in your functions.php file to hook a custom function to RegistrationMagic form submission process…

    function my_custom_function( $form_id, $user_id, $submission_data ) {
    // Your custom code goes here. Use $user_id to get user details.
    }
    add_action( ‘rm_submission_completed’, ‘my_custom_function’ );

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Not Redirecting to the home page after Registration and Login’ is closed to new replies.