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
add_action('after_setup_theme', 'enfold_child_theme_code'); | |
function enfold_child_theme_code() { | |
if (is_child_theme()) { | |
remove_action('tribe_events_template', 'avia_events_template_paths', 10, 2); | |
//add_filter('tribe_events_template_paths', 'avia_events_template_paths_mod', 10, 2); | |
} | |
} | |
add_action('tribe_events_template', 'avia_events_template_paths_mod', 10, 2); | |
function avia_events_template_paths_mod($template, $template_name) { |