Skip to content

Instantly share code, notes, and snippets.

View alshedupur's full-sized avatar
💭
I may be slow to respond.

Bamon Mandal alshedupur

💭
I may be slow to respond.
View GitHub Profile
@alshedupur
alshedupur / functions.php
Created October 4, 2023 17:44
Override the Events Calendar template from Enfold to Enfold Child. Add this code to your child themes functions.php
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) {