roundupwp
Forum Replies Created
-
It looks like your theme is adding a bunch of html in the middle of the form and changing how it displays. You can either try disabling this feature of the theme or you can try adding this to the “Custom CSS” area on the “Form” tab inside the plugins settings pages to help:
#rtec input[type="text"], #rtec input[type="email"], #rtec input[type="tel"], #rtec input[type="number"], #rtec textarea { padding: 2px !important; }The labels will be visible after clicking inside the input field, however, the error messages are still broken, likely due to to the changes your theme makes. It should be usable at least.
Let me know if you have more questions!
– Craig
If possible, a link to a page that has the form on it will work best. So if you could make it a public page for a moment, I can take a look right away.
Hey ondestas,
We can definitely help you out with this! My guess is that your theme is changing some of the CSS for the plugin’s forms. I can help you fix it if you send a link to a page that has the form on it. If you don’t want to post that here, please use our contact form:
https://roundupwp.com/support/
Thanks!
Hello again,
This thread has been quiet for awhile so I’m going to mark it resolved. Let me know if you have any more questions.
– Craig
Hello again,
This thread has been quiet for awhile so I’m going to mark it resolved. Let me know if you have any more questions.
– Craig
Thanks for contacting me with the link! I’ll mark this resolved.
Hello again,
This thread has been quiet for awhile so I’m going to mark it resolved. Let me know if you have any more questions.
– Craig
Hello again,
This thread has been quiet for awhile so I’m going to mark it resolved. Let me know if you have any more questions.
– Craig
Hello again,
Just following up to let you know that version 2.3 has support for custom email templates. Just be sure to save your files in a different location before updating. Follow this guide: https://roundupwp.com/faq/change-html-email-templates/
I hope all is well!
Thanks,
Craig
Hey anilchadh,
In that case, you would just need something like this PHP added to your functions.php file for your theme:
function ru_custom_button() { echo '<button><a href="'.get_the_permalink().'">Register</a></button>'; } add_action( 'tribe_events_before_the_meta', 'ru_custom_button' );Just be careful when editing your theme’s functions.php file as an error can crash your site.
This will add a button that links to the event detail page like you were asking about. Hopefully it helps!
– Craig
Hey MackMediaSam,
It sounds like you might be using the “Pro” version. The moderators of the forum prefer that we handle support on our website for this version. Can you contact us here?
Hey Ronie,
This ends up being more related to The Events Calendar but it is possible with the use of the templating system it comes with. Take a look at the themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
You would just need to apply some PHP logic to display a different price if the person is logged-in, is_user_logged_in()
Hopefully that helps! Let me know if this isn’t what you meant.
– Craig
Hey Benjamin,
Sorry I missed your follow up question! There isn’t any kind of electronic check-in feature with the plugin. The best I can suggest is exporting registrations to a spreadsheet and manually checking off attendees.
Otherwise I believe there are other registration plugins that do, in fact, have this kind of a feature. It’s possible we will add one in the future but no timetable for development as of yet.
– Craig
Hello @benjaminleschke and @mashamit,
Currently there isn’t a way to register for multiple people at the same time with the free version. We do have a field to indicate the number of “guests” in the paid Pro version but no way to provide additional details about the additional guests.
This may change in the future though!
Thanks,
Craig
Hey suzyleusby,
This is definitely possible with a bit of PHP knowledge. There are several ways to customize the event “views.” There is an article related to this on our website:
https://roundupwp.com/customize-events-calendar-single-event-templates/
The examples include adding the registration attendance counts. It’s possible that might work for you as well.
Hopefully that helps!
– Craig