• Resolved pre20

    (@pre20)


    Currently, when users enter on an event they need to click on the Registration button to access to the registration form. Is it possible to auto expand the form so users don’t need to click on the button?

    Thanks

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

    (@roundupwp)

    Hey pre20,

    This will be a setting in a future update but until then, you could try adding this JS snippet to the “Custom JavaScript” area on the “Form” tab:

    setTimeout(function() {
      $('.rtec-form-wrapper').show();
      $('.rtec-form-toggle-button').hide();
    },500);

    Let me know if you have more questions!

    – Craig

    Thread Starter pre20

    (@pre20)

    Appreciate the quick response, it worked!

    I have some minor questions, not really issues as your plugin works great, only details to improve the experience, to not open a new topic:

    – Is it possible to call to the Terms and Conditions label on the Notification email I receive with details of each registration? That checkbox is required but just to receive a written confirmation that the person accepted. (I’ve just seen it is shown as accepted on the registers table on each user, so I figure it may be enough)

    – Is it possible to close registration and open it automatically let’s say 1 month before the event? I figure the only way is to edit the event and disable registration and then enable manually?

    – Does the Attendee Display list have any type of customization to show more fields besides the default ones like name?

    – And is it possible to show the registration button/form before the Attendee list? Currently it appears after the list.

    Thanks

    • This reply was modified 4 years, 7 months ago by pre20.
    Plugin Author roundupwp

    (@roundupwp)

    No problem! Some answers below:

    – Is it possible to call to the Terms and Conditions label on the Notification email I receive with details of each registration? That checkbox is required but just to receive a written confirmation that the person accepted. (I’ve just seen it is shown as accepted on the registers table on each user, so I figure it may be enough)
    Since the checkbox is required, you could just hard code in any disclaimer you need in the notification. Just switch to a “Custom” notification template.

    – Is it possible to close registration and open it automatically let’s say 1 month before the event? I figure the only way is to edit the event and disable registration and then enable manually?
    Currently this is a feature only in our paid “Pro” version though if you are handy with PHP, you could manipulate the event meta to close the event on a schedule https://roundupwp.com/codex/filter-rtec_event_meta/

    – Does the Attendee Display list have any type of customization to show more fields besides the default ones like name?
    Yes! We have a simple templating system, similar to the email templating system in the paid “Pro” version. This PHP hook works in both versions however https://roundupwp.com/codex/action-rtec_the_attendee_list/

    – And is it possible to show the registration button/form before the Attendee list? Currently it appears after the list.
    Yes you can go to the “Form” tab and add this to the “Custom JavaScript” area
    jQuery('.rtec-attendee-list-meta').before(jQuery('.rtec'));

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Auto expand registration form’ is closed to new replies.