Last active
March 28, 2019 04:57
-
-
Save bordoni/d44b246ab974f4e3e52894a0f1689b3e to your computer and use it in GitHub Desktop.
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_editor_default_template', function( $template ) { | |
| $template_search = array_column( $template, 0 ); | |
| $organizer = array_search( 'tribe/event-organizer', $template_search ); | |
| unset( $template[ $organizer ] ); | |
| return $template; | |
| }, 11, 1 ); |
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_editor_default_template', function( $template ) { | |
| $template = [ | |
| [ 'tribe/event-datetime' ], | |
| [ 'core/paragraph', [ | |
| 'placeholder' => __( 'Add Description...', 'the-events-calendar' ), | |
| ], ], | |
| [ 'tribe/event-organizer' ], | |
| [ 'tribe/event-venue' ], | |
| ]; | |
| return $template; | |
| }, 11, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment