Hello,
we are trying to force Event Category selection on the Events Submission Form.
This is the code we are using:
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[] = 'post_content';
$fields[] = 'EventStartDate';
$fields[] = 'venue';
$fields[] = 'organizer';
$fields[] = 'tribe_events_cat'; //this is one is not working
return $fields;
}
Tested with all sort of variations regarding the slug for category, but with no success. Any help?
Thank you.