Home › Forums › Calendar Products › Community Events › Sign up form
- This topic has 7 replies, 4 voices, and was last updated 9 years, 3 months ago by
Filip.
-
AuthorPosts
-
December 2, 2016 at 11:26 am #1201001
Filip
ParticipantHello Everybody
I’ve just bougth the plugins.
How do I have the option to have a registration form where the organizer fills in the “organiser information” and is than automaticaly created an account to add events (whether or not the “new organiser” is set as a pendin organizer or automaticaly allowed to create events?
Thank you for the help.
December 2, 2016 at 9:57 pm #1201124Hunter
ModeratorHey Filip,
Welcome to our premium plugin support forums and thank you for your purchase! The plugin does not behave the way you’ve described. There is no flow from site registration into adding events. This is something you would need to set up yourself. More details on how the plugin works can be found by visiting the links below. I encourage you to review them in depth and if you still have questions, feel free to send them over.
If this customization gets beyond your level of expertise, we have a list of customizers available to help further assist.
Lastly, you can see what’s covered on the support forums by reviewing our What support is provided for license holders? Knowledgebase article. Best of luck and have a great upcoming weekend. Cheers!
December 5, 2016 at 1:21 pm #1201739Filip
ParticipantThank you for the information.
One last question.
In what folder do I have to insert following code to make content from the submission form required?
https://theeventscalendar.com/knowledgebase/required-fields-for-events-submission-form/December 6, 2016 at 12:24 pm #1202269Hunter
ModeratorHello,
If you wanted to implement any example code provided on the page you linked to, you would add the code to your theme’s functions.php file. Please let me know if this helps clarify the matter and have a great rest of your day. Cheers!
December 13, 2016 at 3:50 am #1205113Filip
ParticipantDear,
I tried to place following code in the theme’s functions.php file:
add_filter( ‘tribe_events_community_required_organizer_fields’, ‘my_organizer_community_required_fields’, 10, 1 );function my_organizer_community_required_fields( $fields ) {
if ( ! is_array( $fields ) ) {
return $fields;
}$fields[] = ’email’;
return $fields;
}Unfortunately it seems not to be working since the organiser e-mail field is still not required
December 14, 2016 at 11:42 am #1206070Hunter
ModeratorHello,
You are right! Try the following code and let me know how it works for you. I was able to get it working properly on my test installation:
add_filter( 'tribe_events_community_required_fields', 'my_community_required_fields', 10, 1 );function my_community_required_fields( $fields ) {
if ( ! is_array( $fields ) ) {
return $fields;
}$fields[] = 'organizer';
return $fields;
}January 5, 2017 at 8:35 am #1213801Support Droid
KeymasterHey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.
Thanks so much!
The Events Calendar Support Team -
AuthorPosts
- The topic ‘Sign up form’ is closed to new replies.
