roundupwp
Forum Replies Created
-
Hey djlo,
You’re welcome! I’m glad it’s working well for you.
An attendee list is not yet possible but it will be in the next major update (in about a month or so)
You will also be given the option of confirming the guest before their name appears for some added control.
Let me know if you have any more questions!
– Craig
Hey again,
It looks like it’s been awhile since the last post so I’m going to mark this as resolved. Let me know if you have any questions!
Hey somer2004,
You can add a registration form to every event even if they are on the same day. Is this what you are asking or are you looking for the support forum for The Events Calendar? This forum is just for the Registrations extension. Let me know if I’m not understanding.
Hey stefoodie2017,
This is actually the support forum for an extension for The Events Calendar but this is an easy change. You would need to find a .css file or a custom CSS area to paste in this code to change the colors of the days of the week:
.entry-content .tribe-events-calendar thead th { background-color: #fff; border-color: #fff; color: #333; }The font color is changed by the “color” part of the code while the other two parts change the background. You can change the #fff to whatever color hex code you need.
Hey Cabadaj,
Glad you like the features of the plugin so far!
You also have very useful ideas. Some of these are planned for a paid “pro” version that will be available soon such as the ability to select from tiers within an event (for your race/not race/maybe race) selection, ability to create different types of input fields (select, checkboxes, textareas for long responses), and more support for working with logged in users.
In order to provide support and maintenance for the free version there is going to be some advanced features reserved for the paid version.
Some of these features may be added to the free version as well, however. We are always trying to balance the features in a smart way that keeps the plugin useful for most people.
You could try creating three separate events for each race with your options in the title. That way they would be separated. I realize this is not ideal though.
– Craig
- This reply was modified 9 years, 2 months ago by roundupwp.
Hey adowdle,
Thanks for the review! Glad you like the plugin.
No problem! I appreciate when people take the time to give feedback. I want this plugin to work really well for it’s users.
Let me know if you have any thoughts. Also, that would be really great if you were willing to leave a review! That really helps others notice the plugin and try it out.
Thanks again,
Craig at Roundup WP
Hey again,
Ahh I see. Yeah I realized that the shortcode was not ideal. I was just trying to offer something until I could put something that worked better together. I have the shortcode function returning the HTML which also works but thanks for the tip.
Glad you found a solution that will work for you! I definitely want to make improvements as time goes on and know there are some other great plugins out there. This one will definitely be as good or better eventually 🙂
Thanks again!
Hey again haieb,
Just a heads up that the version 1.5 added support for pre-populating the first, last, and email fields for logged-in users with the appropriate user data. I decided against hiding the fields entirely if the data is available just to avoid confusing people who are using the plugin for the first time. You could probably make a few tweaks to the code to accomplish this if you needed to though.
Thanks again for your suggestion!
Hey again Prateek,
Just a heads up that I added support for shortcodes in version 1.5. I would suggest removing the code I gave you earlier since it might cause a conflict.
You can now look for the shortcode to display an event’s form on either the “edit” screen for a single event or on the “registrations” tab in the drop-down “Event Options” area. You can also decide if you want to just show the form initially or show the “register” button to reveal the hidden form with the setting hidden=”true” or hidden=”false”.
Let me know if you have any thoughts or questions!
Hey haieb,
I’m very glad you like the plugin! Your suggestion makes a lot of sense as well.
I can see two ways to make it work. Either all of the form fields currently available would be pre-populated with any information available for the user or there would be hidden fields with the data in place of the form fields for information available for the user. I’ll add some sort of support for this in the next update! Let me know if you have any other thoughts.
Thanks again!
No problem! There will be a few things that might be styled differently than the usual display of the form just to give you a heads up. Let me know how it goes and if you have any suggestions on how it can be improved. I’d like to make this a useful feature!
Sorry about that! I also work with plugins for Smash Balloon and forgot to sign out. I will add the rest of my reply with my usual user to avoid too much confusion.
If you would like to try adding this now, I was able to put together some code that will accomplish this. Are you comfortable adding php to your functions.php file? If so, you could add this to that file in your theme:
add_shortcode( 'rtec-registration-form', 'rtec_the_registration_form_shortcode_custom' ); function rtec_the_registration_form_shortcode_custom( $atts ) { $post_id = isset( $atts['id'] ) ? (int)$atts['id'] : false; if ( $post_id !== false ) { $args = array( 'post_type' => 'tribe_events', 'p' => $post_id ); $the_query = new WP_Query( $args ); if ( $the_query->have_posts() ) { while ( $the_query->have_posts() ) { $the_query->the_post(); if ( function_exists( 'rtec_the_registration_form' ) ) { rtec_the_registration_form(); } } wp_reset_postdata(); } } }You can then use a shortcode like this:
[rtec-registration-form id=17]The “17” represents the post ID of the event you are trying to add a registration for. You can find post IDs by visiting the “edit post” view in the dashboard and looking up in the address bar (screenshot)
Otherwise you can wait for the next update!
Let me know if you have any questions about this.
Just wanted to post a quick update to this. The ability to add more custom text input fields in the form will be a feature added in version 1.3. It will likely be available within a few weeks of this post.
Hey efferalgan,
Currently you can only add the one custom field unfortunately. I will consider adding more as a feature in a future update though. Let me know if you have any other questions!