roundupwp
Forum Replies Created
-
No problem!
I hope you’re having a good week.
Ahh sure I can help you with that! This CSS will target events just in that category:
.tribe_events_cat-inperson .rtec-attendance.tribe-events-notices {
display: none;
}If you have other categories, you would just the category “Slug” in place of “inperson” in this code and paste it again.
There is a setting to disable this on the “Form” tab:
https://snipboard.io/7rgiDv.jpgThis feaeture is also in the free version so it’s OK to ask here but please contact us on our website for future support of the Pro version if you can:
https://roundupwp.com/support/
Thanks!
– Craig
It looks like they are all on one line to me:
https://snipboard.io/YAwhuW.jpgCan you send a screenshot of what you’re seeing on your end?
– Craig
You can use this CSS to change the submit button:
.tribe_events_cat-inperson .rtec-form-wrapper .rtec-submit-button { color: #fff !important; background: red !important; }Hoppefully that helps!
– Craig
Hello again,
No problem! Try adding this to the “Custom CSS” area on the “Form” tab:
.tribe_events_cat-inperson .rtec-form-wrapper { background: yellow !important; } .tribe_events_cat-inperson .rtec-form-field label { color: #000 !important; }This detects the event category and changes the color to yellow for “In Person” events.
This kind of strategy will work for the free version as well so it’s OK to ask the question here but if you need additional support for the Pro plugin, you can contact us on our website:
https://roundupwp.com/support/Thanks!
Sure!
Are the forms on the single event page created by The Events Calendar or are they on a separate page? Can you share a link? I can provide some CSS to help you!
– Craig
Hey satyenbaldev,
Sure! Are you hoping to have each event have a different color or just change the color for all forms?
If you want to change the color for all forms there are settings to do this on the “Form” tab.
Let me know if this isn’t what you meant.
– Craig
Ahh yes we have a different notice entirely for our paid version which I’ll make sure is added to the free version in the next update. You are right that this can be improved!
Hey Vince,
It looks like you submitted a ticket for this. Thank you! I’ll close this for now and respond to you through the ticketing system.
– Craig
Hey again hoffman6132,
It sounds like you might be familiar with code so I thought I would provide an example of how to add the “phone” field to the fields that are pre-filled. It will be dependent on whether or not you are able to get the phone number from Ultimate Member using PHP but they might give you the code to do so if you contact their support.
Add this to your theme’s functions.php file (or create a plugin). You’ll want to change the ‘1234567’ to be code that gets the phone number for that member.
function ru_dynamic_custom_field( $field_attributes ) { if ( isset( $field_attributes['phone'] ) ) { $phone_number = '1234567'; // replace with code to get phone number $field_attributes['phone']['default'] = $phone_number; } return $field_attributes; } add_filter( 'rtec_fields_attributes', 'ru_dynamic_custom_field', 10, 1 );To submit the form when the person clicks the first “Register” button, first add this to the “Custom CSS” area found on the “Form” tab:
#rtec .tribe-bar-toggle-arrow, .rtec-form-wrapper { display: none !important; } .rtec-outer-wrap #rtec:not(.rtec-use-modal) .rtec-register-button { padding-right: 16px !important; }Then add this to the “Custom JavaScript” area found in the same area:
jQuery('.rtec-register-button').on('click',function() { jQuery(this).closest('.rtec').find('.rtec-form').trigger('submit'); });And finally, for your comment about detecting if a person has registered if they are logged-in, this is something we have in the paid “Pro” version but will likely add in to the free version at some point.
Let me know if you end up with more questions!
– Craig
Hey hoffman6132,
I think I can figure something out here! Is all the information needed for registration already pre-filled in the registration form when someone is logged-in? In other words, is all the info you would want the first name, last name, and email? I can give you some JavaScript to make the form automatically submit when the person clicks the “Register” button (and forego the “Submit” button).
– Craig
Ahh yes there probably should be. I added a note to do so in the future!
I’ll close this thread for now but let me know if you end up with more questions about this.
Sounds good! Though if you run into trouble I can take a quick look at the code if you’d like.
– Craig
Hey Chris,
You are right that there aren’t any configuration options for this currently. It’s meant to be a simple “heads up” that someone is no longer coming and who they were. What were you hoping for?
– Craig