Sign up form

Home Forums Calendar Products Community Events Sign up form

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1201001
    Filip
    Participant

    Hello 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.

    #1201124
    Hunter
    Moderator

    Hey 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!

    #1201739
    Filip
    Participant

    Thank 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/

    #1202269
    Hunter
    Moderator

    Hello,

    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!

    #1205113
    Filip
    Participant

    Dear,

    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

    #1206070
    Hunter
    Moderator

    Hello,

    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;
    }

    #1213801
    Support Droid
    Keymaster

    Hey 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

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Sign up form’ is closed to new replies.