• Resolved Marchetti Design

    (@afmarchetti)


    It’s possibile to create a user login when he buy via paypal form?

    Also in checkout process the data from the form are not passed to paypal, the user need to insert name and adress to times, is it right?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Kris – WPMU DEV Support

    (@wpmudevsupport13)

    Hi @afmarchetti

    I hope you are doing good today.

    When you create a new form, from a modal pop-up called “Choose a template”, please choose a Registration template:
    https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#registration-and-login-forms

    As for passing info to PayPal:
    https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#paypal-field -> Pre-fill Billing Details section

    Pre-fill the payer’s billing info collected on your form on the Debit or Credit Card checkout, so the payer doesn’t have to enter those details again.

    So that feature should be enabled.

    Kind Regards,
    Kris

    Thread Starter Marchetti Design

    (@afmarchetti)

    Hi @wpmudevsupport13 thanks for the reply!

    If i create a registration form to pay something when a user is new, he see the form ok, but if is already register? i need to duplicate the form as a login form?

    Not so clear for the user than need to buy from the same page…

    Hello @afmarchetti !

    I hope you’re doing great today!

    I think the best solution here would be to create two forms – one for registered users and one for new users, then place both on the same page.

    Set the registration form to be hidden if user is already logged in (on the User Registration tab).

    Afterwards, you can use custom CSS to hide the other form for users based on their logged in status:

    Let’s say that:
    – form 98 is the registration form for new users
    – form 99 is the form for logged in users

    body.logged-in .forminator-guttenberg + p {
      display: none !important;
    }
    
    body:not(.logged-in) #forminator-module-99 {
      display: none !important;
    }

    You can add this custom CSS in Appearance >> Customise >> Additional CSS.

    As for the form IDs – you can find those in the shortcodes for each form, as well as in the URL of the form’s edit page.

    Warm regards,
    Pawel

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @afmarchetti ,

    We haven’t heard from you for a while now, so it looks like you don’t have more questions for us.

    Feel free to re-open this ticket if needed.

    Kind regards
    Kasia

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Ho to create account when user buy’ is closed to new replies.