roundupwp
Forum Replies Created
-
Hey camarados,
Sorry for the confusion!
Do you have a link to an event that has a registration form and a page that has the attendee list for that event (if separate)? One thing that can be confusing is that the free version attendee list displays information entered in the “First” and “Last” fields. If you are not using these fields the attendee list will appear blank.
You mentioned confirming the manually added attendee. This is normally a Pro feature. Are you using the Pro version? If so you will need to contact us on our website for continued support: https://roundupwp.com/support/
For question 2:
Right now you would have to find the notification email related to the person who unregistered. The Pro version includes more details about the person and this change will be added to the free version in the next major update, which is being worked on right now and should be available in February.Thanks,
Craig
Also, I forgot to mention that I made a test registration. Feel free to delete this record (Roundup Test).
– Craig
Hello kalimeromax,
It looks like you change the id of the “rtec” element to “anmeldung”. Does that sound right? This seems to be causing the issue. Like I mentioned previously, the way the success message is displayed is not ideal and I will change this in an update.
In the meantime, can you try adding this to the “Custom JavaScript” area? You will want to replace the existing code:
var rtecSuccessMessage = jQuery('.rtec-form-1').length ? jQuery('.rtec-form-1').attr('data-rtec-success-message') : 'Ihre Anmeldung war erfolgreich. Bitte überprüfen Sie Ihre E-Mail Posteingang für eine Bestätigungsnachricht.'; if (!jQuery('#rtec').length) { jQuery('.rtec').first().before('<span id="rtec"></span>'); jQuery('#rtec').attr('data-rtec-success-message',rtecSuccessMessage); }Thanks,
Craig
Sounds good! Good luck with your proposal 🙂
Glad that helped! Thanks for including the code as well. It may help others.
Have a great start to your week!
– Craig
Sounds good! I’ll wait to hear back then.
Hey Evgenii,
Sorry for any issue!
I just tested again to be sure but it seems it’s working fine for me with that version of Chrome.
Is it possible that there is a JavaScript error occurring on the page? This can prevent all other JavaScript from working. You can try disabling other plugins and switching themes for a moment to see if it fixes the issue.
I can take a look for myself if you’d like. You can use our support form to send an admin username and password:
https://roundupwp.com/support/
Thanks,
Craig
Hey Vincent,
I do! Though you may need a moderate amount of comfort with PHP. Take a look at this article:
https://roundupwp.com/codex/action-rtec_the_attendee_list/
If you have trouble, send me a link to an event that has the registration form on it and I can help you add the additional field.
Thanks!
– Craig
No problem! I hope you have a good rest of your week.
Hey Atoupro,
Some responses below:
1. Is it possible to do that?
Yes though with the free version, you’ll need to use some custom PHP and a hook. You could then use tags or categories as part of the logic so that it can be done per event. See this article:
https://roundupwp.com/codex/filter-rtec_event_meta/Example:
function ru_filter_event_meta( $event_meta ) { if ( ! is_user_logged_in() && has_term( 'members-only', 'post_tag', get_the_ID() ) ) { $event_meta['registrations_disabled'] = true; } return $event_meta; } add_filter( 'rtec_event_meta', 'ru_filter_event_meta' );In the Pro version, there are several options for members including the ability to restrict some or all events to members only.
2. Does the plugin work with a membership plugin?
Yes. It seems most if not all membership plugins use WordPress’ default user system to handle logged-in vs logged-out users. Our plugin also uses the default user system.3. Is it possible to autofill some fields of the form (name, email, etc.) based of on the logged-in user?
Yes. This is actually how the plugin works by default. If you are logged in, the fields first, last, and email should be prefilled. Is this not working for you? Send a link if you’d like!The Pro version has a PHP hook to prefill more fields. This will also come to the free version in the next major update. Article:
https://roundupwp.com/codex/filter-rtec_user_data/Hopefully that helps!
– Craig
I see I never responded!
Glad that worked! I hope all is well with the project.
– Craig
Hey sfm93,
Currently the only file that can be customized this way is the one for the email template in the “free” version. Here is a link for this:
https://roundupwp.com/faq/change-html-email-templates/
What kinds of customizations have you been working on? There hasn’t been a major release for the free version in awhile but there will be one early in 2020. I think it would be good to include some template files that can be overridden in the theme then.
– Craig
Hey Atoupro,
We have this hook that sounds like it will work:
https://roundupwp.com/codex/action-rtec_after_registration_submit/
Let me know if you have more questions!
– Craig
Hey again,
No worries. I’m glad you were able to find the source of the problem!
I’ve been meaning to add support for the gcal link to the plugin as well. There will be a much promised update to the free version soon! In the meantime you can add this to your theme’s functions.php file to add support for {gcal-url}:
function ru_add_email_template( $search_replace, $sanitized_data ) { $event_id = isset( $sanitized_data['event_id'] ) ? $sanitized_data['event_id'] : false; if ( false !== $event_id ) { $search_replace['{gcal-url}'] = esc_url( tribe_get_gcal_link( $event_id ) ); } return $search_replace; } add_filter( 'rtec_email_templating', 'ru_add_email_template', 10, 2 );Sure! We definitely want to fix all bugs but I can provide a screenshot if you’d like:
https://snipboard.io/6rto8c.jpg
Thanks,
Craig