• Resolved golazphil

    (@golazphil)


    Hi !

    First of, thank you for this plugin, it does just what I was looking for : allowing people to register to an event, and show a list of attendees.
    I have one question : is it possible to display the form automatically in the event ? I’ve seen it’s possible to do so with the shortcode and the hidden=false command, but I would like to have the same in the event page. Another possibility that I would be happy with would be to display the list of attendees with the shortcode too (and not just the form).

    Thanks for your help !

    EDIT : Sorry, didn’t read all the topics, and I just found the solution !

    • This topic was modified 7 years, 6 months ago by golazphil. Reason: Found solution in another topic
Viewing 1 replies (of 1 total)
  • Plugin Author roundupwp

    (@roundupwp)

    Hey golazphil,

    Glad you were able to find a solution for your first question! I think I will add this as an option in the plugin’s settings area in future update as it seems to be a popular request.

    As for showing the attendee list with the shortcode, are you comfortable editing the source files for the plugin? It would just require removing the following from the form-functions.php file in the path inc/form/form-functions.php: && ! $doing_shortcode

    Change line 44 from:

    
    if ( $event_meta['show_registrants_data'] && ! $doing_shortcode && ! $form->registrations_are_disabled() ) {

    to

    if ( $event_meta['show_registrants_data'] && ! $form->registrations_are_disabled() ) {

    I think I will make a shortcode setting for this in the future as well. The list may look off depending on your theme so let me know if you need help making it blend in!

    – Craig

Viewing 1 replies (of 1 total)
  • The topic ‘Show form in event’ is closed to new replies.