Ingo Buschmann

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Required field for organizers e-mail address #1325812
    Ingo Buschmann
    Participant

    Hello Patricia,

    it worked! Thank you! 🙂

    in reply to: Required field for organizers e-mail address #1323804
    Ingo Buschmann
    Participant

    Hi Patricia,

    I used this code from another thread

    add_filter( 'tribe_events_community_required_fields', 'mark_twain_country_event_required_fields', 10, 1 );
    function mark_twain_country_event_required_fields( $fields ) {   
        if ( ! is_array( $fields ) ) {
            return $fields;
        }
        $fields[] = 'Organizer';
        $fields[] = 'Email';
        return $fields;
    } 

    Best regards,
    Ingo

    in reply to: Required field for organizers e-mail address #1323236
    Ingo Buschmann
    Participant

    Hi Patricia,

    this code didn’t work for me so I tried another code someone posted in another thread.
    The problem with the required field was solved but if i type in a valid e-mail address I always get the error message “Required field”.

Viewing 3 posts - 1 through 3 (of 3 total)