roundupwp
Forum Replies Created
-
Just a quick update here. The translation has been fixed in version 2.4.4! You should be able to translate this string now.
– Craig
Sounds good! I hope you’re having a great start to your week.
– Craig
Hey Amanda,
The free and pro versions of Registrations for the Events Calendar work with recurring events though you will need to purchase The Events Calendar Pro to create the recurring events.
So yes you’ll also need the Pro version of The Events Calendar.
Let me know if you have any more questions! One thing I should mention though is that the moderators of this forum prefer that we handle support for the Pro version on our website.
Thanks!
– Craig
Hey Etienne,
Here are the steps:
1) Create a custom field (“Custom 2” in this example)
2) Add this PHP to your functions.php for your theme:function ru_custom_select( $field_attributes ) { if ( isset( $field_attributes['custom2'] ) ) { $field_attributes['custom2']['type'] = 'select'; $field_attributes['custom2']['meta'] = array( 'options' => array() ); // array ( LABEL, VALUE, IS PRESELECTED ) $field_attributes['custom2']['meta']['options'][] = array( 'First Option', 'First Option Value' , false ); $field_attributes['custom2']['meta']['options'][] = array( 'Second Option', 'Second Option Value' , false ); $field_attributes['custom2']['meta']['options'][] = array( 'Third Option', 'Third Option Value' , false ); } return $field_attributes; } add_filter( 'rtec_fields_attributes', 'ru_custom_select', 10, 1 );You can copy and paste the examples ($field_attributes[‘custom2’][‘meta’][‘options’][] = array( ‘First Option’, ‘First Option Value’ , false );) to create more options to select from as needed. If you are using a field other than “Custom 2” change “custom2” parts to match.
Let me know if you have more questions!
– Craig
Hey again E.Pipo,
Sorry for the delayed response here! The free version doesn’t officially support select fields as of right now. It will likely do so in the future. In the meantime it might be possible with a PHP snippet. I will get back to you by the end of the week with an example.
– Craig
Hey E. Pipo,
That’s great! Thanks for doing that.
And yes, I will make a note to fix these missed translations in an update.
Thanks again,
– Craig
No problem! Glad we could help you out again.
No obligation or anything but we always appreciate reviews if you felt like leaving one.
Have a great rest of your week!
– Craig
Hello again,
I just wanted to mention that the fix mentioned previously was not included in the last update but will make it into the next one. Sorry for the inconvenience!
– Craig
Hey Brendan,
I’m glad you like the plugin!
I might add a setting for this in the future but in the meantime, add the following to the “Custom JavaScript” area on the “Form” tab:
jQuery('.rtec-input-wrapper').each(function() { jQuery(this).find('input[type=text]').val(''); });That should clear all of the form fields when the page loads.
Let me know if you have more questions!
– Craig
No problem! Thank you for your patience.
Hey Christian,
Sorry to keep you waiting! I just released the update so it should be available now. Let me know if you need more help.
Also, in the future, could you contact us on our website for Pro support? Here is the link:
https://roundupwp.com/support/
Thanks,
– Craig
This thread has been quiet for awhile so I’ll mark it as resolved. Let me know if you have any questions though.
– Craig
No problem! Glad I could help you out.
No problem! Have a great rest of your week.
Hey Mike,
The latest version of the plugin (2.4.3) now wraps the JS for the plugin in a function. You can initialize the form using it:
rtecInit()
Let me know if you need more help!
– Craig