roundupwp
Forum Replies Created
-
Hey flinnn,
First of all, thanks for taking the time to leave a review!
As for your comment about some messages not being customizable, the plugin tries to offer a lot of customization without being overwhelming. I do think it makes sense to make this customizable in the future though. I’ve made a note to do so.
Otherwise, you can always use translation files to change text not otherwise changeable with settings. Something like the plugin Loco Translate works well.
Thanks again,
Craig
Hey Marco,
No problem! And no need to worry about a donation. I’m happy to help out with customizations for either version if they are fairly simple. If you like the plugin, reviews are always helpful and appreciated. Definitely no obligation though.
If you have any other questions I’d be happy to give you some direction if not provide the code.
Thanks again,
Craig
Hey beatty67,
This is something we are adding to the “Pro” version within a week or so and will also make it’s way to the free version at some point. It would be done with a shortcode and look similar to The Events Calendar’s way of displaying events in a list in a widget.
Thanks,
Craig
No problem!
For your new question, this is another feature of the “Pro” version though using the hook I sent, you could recreate this using the free version. It would require querying the database to see if the logged-in user has already registered for the event.
– Craig
We were able to resolve this using our support page. Thanks André!
Hey Roman,
With the free version, you can disable the automatic confirmation email using the setting on the “Email” tab. However you would then need to manually send the confirmation email using your own email client.
You are correct in thinking that the paid “Pro” version has a feature to manage this using the admin registration-page. You can manually confirm all registration submissions.
Thanks!
– Craig
Hey again Marco,
There is a filter to manipulate the event settings using PHP. Take a look at the example on this page: https://roundupwp.com/codex/action-rtec_before_display_form/
Otherwise the paid Pro version has a few features for this.
Hopefully that helps!
– Craig
No problem! Have a great rest of your week.
Hey again André,
Sorry for the confusion! The mentioned filter is actually just a part of the snippet you can copy and paste.
If you’d like, you can contact me on our website and I can adapt the snippet for your needs. I would just need your “System info” from the “Support” tab. Try sending that here:
Hey Marco,
Sorry the first idea didn’t work! I’m glad you were able to find something that did though. Let me know if you have more questions.
– Craig
Hey Marco,
For this, you could just add this code somewhere after line 906 in that same file:
if ( is_user_logged_in() && $field_settings['field_name'] === 'other' ) { $user_meta = get_user_meta( get_current_user_id() ); $field_settings['value'] = isset( $user_meta['user_meta_key'] ) ? $user_meta['user_meta_key'][0] : ''; }The “user_meta_key” part is the meta key for whatever data you are looking for.
– Craig
Hey Marco,
There isn’t a way to change this currently without editing the source code. It’s a simple change, however, if you’d like to try it.
– Open the file class-rtec-form.php in the inc/form directory
– Change line 894 from:$field_settings['value'] = isset( $user_meta['first_name'] ) ? $user_meta['first_name'][0] : '';to:
$field_settings['value'] = isset( $user_meta['nickname'] ) ? $user_meta['nickname'][0] : '';This should do it!
– Craig
Hey André,
Are you handy with PHP at all? We have a hook for changing the attendee list you can find more information about here:
https://roundupwp.com/codex/action-rtec_the_attendee_list/
Otherwise our paid “Pro” version has a setting for altering what information is displayed in the attendee list.
Let me know if you have more questions!
Thanks,
Craig
No problem!
No other field types are supported even with this filter at the moment. Possibly in the future though!
We are always trying to balance our Pro vs Free options (the Pro version offers these). I do think it makes sense to include all standard field types (radio, select, checkbox, textarea, number) in the future.
– Craig
Just an update. This has been corrected in version 2.4.4! The translation files themselves have not been updated but will be in the next major release.
– Craig