roundupwp
Forum Replies Created
-
Hey gsoler,
Sorry to hear you’ve been getting a lot of spam!
Unfortunately this form is unrelated to anything Registrations for the Events Calendar makes. You may need to contact your host-provider for support for this.
– Craig
Hey Tara,
I think I can come up with something that will work using this hook:
https://roundupwp.com/codex/filter-rtec_event_meta/Are you comfortable with PHP? I can provide a PHP snippet you can add to your theme’s functions.php file if so.
Do you happen to know the category ID or slug for the category? This can be found when using the “Event Categories” menu page.
Thanks,
Craig
No problem!
No you won’t have to do this for the Pro version currently but this will also be available in the free version in the future.
– Craig
No problem Kris!
And glad to hear that you are considering the Pro version. I hope you have a great rest of your week as well!
Hello again,
Since this is a Pro related question, I’ll direct you to our website to answer this:
https://roundupwp.com/support/
I’d be happy to follow up with you there!
– Craig
Hi checkoder,
Yes! This is possible with the Pro version. The moderators of this forum would like if we answer pro related questions on our website. If you have more questions, contact us there:
https://roundupwp.com/support/
Thanks!
Hi chickoder,
We have a hook that can be used for this in the free version:
https://roundupwp.com/codex/filter-rtec_email_templating/In the future it will be native within the free version but adding the suggested snippet to your theme’s functions.php file will make them available.
Let me know if you have more questions!
– Craig
No problem Dean!
Let me know if you ever need anything else.
– Craig
Thanks for your patience!
I found another helpful bit of code on another page by following your link. Try adding this to your theme’s functions.php file:
function ru_the_newsletter_plugin_subscribe( $submission ) { if (! class_exists( 'TNP' ) ) { return; } $sub_data = $submission->submission; if ( isset( $sub_data['email'] ) ) { $subscriber = array( 'email' => $sub_data['email'], 'status' => 'C' ); if ( isset( $sub_data['first'] ) && isset( $sub_data['last'] ) ) { $subscriber['name'] = $sub_data['first'] . ' ' . $sub_data['last']; } TNP::subscribe( $subscriber ); } } add_action( 'rtec_after_registration_submit', 'ru_the_newsletter_plugin_subscribe', 10, 1 );Seemed to work for me when I tested it but let me know if you need more help!
Thanks,
Craig
Hey Kris,
I just wanted to let you know that I will take a look and see how easy it is to integrate with that plugin and get back to you!
Hey collabora,
Glad you could find it!
Yes I have a snippet. Add this to the “Custom JavaScript” area found on the “Form” tab:
jQuery('.single .tribe-events-meta-group').first().prepend(jQuery('.rtec-outer-wrap')).prepend('<h2 class="tribe-events-single-section-title"> Registration </h2>');It will add a “Registration” section above the “Details” section.
Is that what you were hoping for?
Hey kriskelkar,
Thanks for your interest! I have some responses below:
Thinking of using your plugin for my new site. Is there a way to cause registration by someone to auto add them as a subscriber into the Newsletter Plugin?
Which newsletter plugin are you asking about specifically? If it’s easy enough to integrate with it I might be able to help you out.Also, checking on some features:
– do you support any type of anti bot spam for registrations like recaptcha or invisible recaptcha?
We have a spam honeypot field along with support for a Google recaptcha field.
– if I wanted to have a series of reminder emails go out, one for each weekly class in a multi week course, does this plugin support that?
Currently this is a feature of our Pro plugin only.Let me know if you have more questions! If they are related to the Pro version, try our website as this forum is meant for the free version.
– Craig
Hey skjain123,
It looks like you submitted a support ticket about this as well. I’ll follow up with you there!
– Craig
Hey Tom,
Sorry to hear that! If there was a problem recording the registration there would be a notice displayed. Did the person receive a confirmation email? That would also indicate that the form was submitted successfully even if it wasn’t recorded in the backend of WordPress.
– Craig