Created
April 27, 2020 09:22
-
-
Save rafsuntaskin/860926ceead95634f8fd12bd8f2499a5 to your computer and use it in GitHub Desktop.
remove Event description from required fields
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
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; | |
} | |
unset( $fields[0] ); | |
return $fields; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment