• Resolved jackii

    (@jackii)


    Hello,
    it is possible to use a formulafield with prefilled first, lastname and email. But it makes a lot more sense (for me) if there was a Username or Nickname field and it would not be possible to change the value.

    I can not use it if everyone can enter everything in the registration form.
    Without that, it has no connection to my WordPress users and I could use any external registration tool.

    Please, please integrate that.
    I think it shouldn’t be very difficult to fill a field with another value as already possible, but I’m not a dev.
    Thanks a lot

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author roundupwp

    (@roundupwp)

    Hey jackii,

    This request makes a lot of sense. There are plans to change how this works in the future.

    In the meantime I have an idea for you. It will work for the First, Last, and Email form fields but will not yet add the nickname anywhere.

    Try adding this to the “Custom JavaScript” area found on the “Form” tab:

    jQuery('.rtec-form-field').each(function() {
        if (jQuery(this).find('input').val() !== '') {
            jQuery(this).find('input').hide().before('<strong>'+jQuery(this).find('input').val()+'</strong>');
        }
    });

    The input fields will be hidden and the value of the prefilled fields will be displayed in it’s place.

    Is that helpful?

    – Craig

    Thread Starter jackii

    (@jackii)

    Hey Craig,
    for the moment it’s really good.
    Thanks a lot! ??

    Thread Starter jackii

    (@jackii)

    Now I have hidden many things with custom CSS and it’s close to what I need.
    https://i.ibb.co/kMVxvMp/reg.png
    I think it would be great if the “register” button is only displayed if I am not already registered for an event / the already-registered-text is shown. And instead an “unregister” button is displayed.
    The unregister-emails will not be received, but even without this problem, it would be good if you can instantly unregister with 1 or 2 buttons. (e.g. an option for with or without confirmation mail)

    Thanks for the very nice plugin!

    Plugin Author roundupwp

    (@roundupwp)

    No problem!

    We have the features you are asking about in the paid Pro version. They might make there way into the free version at some point though.

    Let me know if you need anything else!

    – Craig

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Fixed and prefilled username field’ is closed to new replies.