roundupwp
Forum Replies Created
-
Just a heads up that version 2.0.1 is now available and has a fix for this.
Thanks again!
Hey again Screenload,
The plugin does also check for duplicate emails server-side to prevent someone bypassing the JavaScript check but you are right, this can be improved.
The latest version (2.0.1) now disables the submit button as soon as a user starts typing in the email field and won’t enable it again until the address is checked.
Let me know if you have more questions about this!
– Craig
Hey Screenload,
Good catch and sorry about this! You are right that it was a development url that was not changed.
I’ll have a fix uploaded in version 2.0.1 within a few days here.
– Craig
Hey 1rico1,
Currently the only way this can be done in the free version is having a guest email you and removing the registration manually on the “Registrations” tab in the “detailed view”.
We have a few options for allowing registrants to cancel in the “Pro” version though there have been a few requests for a feature to allow guests to do this themselves in the “free” version. Look for this to be added in a future update!
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
I’m going to mark this as resolved for now but feel free to post questions if you have them!
No problem John!
I hope you are having a great start to your week.
– Craig
Hey again,
We have plans to add payments to the paid “Pro” version but not yet the free version. I’m going to go ahead and close this thread for now but let me know if you have any more questions!
Hey Melody,
I’m going to go ahead and close this ticket for now but let me know if you have any more questions!
Hey Denso,
I’m going to mark this as resolved. Let me know if you still have questions about anything!
– Craig
Hey again Denso,
Quick note: This is for version 2.0 or higher
Just in case you were still interested (and others might be), to create a separate registration page, first create a new page or add the shortcode to your existing separate registration page.
[rtec-registration-form hidden=false showheader=true]Be sure to leave off the “event=” setting. Instead you will add a query parameter in your link that the shortcode will use.
Then add this to the “Custom JavaScript” area on the “Form” tab:
var rtecEvent = jQuery('.rtec').attr('data-event'); if (typeof rtecEvent !== 'undefined') { jQuery('.single-tribe_events .rtec-register-button').replaceWith('<a href="http://mywebsite.com/registration-page/?event_id='+rtecEvent+'"><button type="button" id="rtec-form-toggle-button" class="rtec-register-button rtec-js-show rtec-custom-hover" style="display: inline-block;">Register<span class="tribe-bar-toggle-arrow"></span></button></a>'); }Make sure you change the “http://mywebsite.com/registration-page/” part of the code to your actual registration page’s address.
Now when a visitor clicks the registration button on the event page, they will be linked to the registration page that will work with the event.
Hey again jjacoberger,
I just wanted to give you a heads up that your custom code may need some tweaks to work with version 2.0. You can now use some filters and hooks to make permanent changes as well. Take a look at these two FAQs for some help with the changes you wanted to make:
https://roundupwp.com/codex/action-rtec_the_attendee_list/
https://roundupwp.com/codex/filter-rtec_event_meta/
Feel free to use our support form if you need more help or have questions!
– Craig
Hey again denso,
Yes this would be possible with some custom JavaScript added to the “Custom JavaScript” area on the “Form” tab. Try adding this:
setTimeout(function() { $('.rtec-form-wrapper').show(); $('.rtec-form-toggle-button').hide(); },500);Thanks!
Hey Denso,
Yes this would be possible with some custom Javascript and adding the shortcode that creates a registration form to a page template. Are you comfortable creating or editing page templates for your theme?
Otherwise I have an idea that will make this easier. There is an update coming out soon and I will include it there.
Forum: Plugins
In reply to: [Custom Twitter Feeds - A Tweets Widget or X Feed Widget] multiple usersHey PetrP,
This isn’t possible without editing the source code. Would you be comfortable doing this? I can point you in the right direction if so.
Thanks,
– Craig