Created
August 24, 2020 21:37
-
-
Save rafsuntaskin/53f8b3c000b5e8853c1e09ffcdcf6e7a to your computer and use it in GitHub Desktop.
Remove ET block editor template
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_action( 'wp_loaded', 'rt_et_remove_default_block_editor_template', 99 ); | |
function rt_et_remove_default_block_editor_template(){ | |
remove_action( 'admin_init', array( tribe('tickets.editor'), 'add_tickets_block_in_editor' ) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment