Hi Cliff,
I have received an answer from kriesi and now it works fine with enfold:
Sidebar not visible after updating "the events calendar" to 4.2.5
After I have substituted the snippet in functions.php, everything also works with TEC 4.2.5.
add_action('after_setup_theme', function() {
if(is_child_theme()) remove_action('tribe_events_template', 'avia_events_tempalte_paths', 10, 2);
});
add_action('tribe_events_template', 'avia_events_template_paths_mod', 10, 2);
function avia_events_template_paths_mod($file, $template)
{
$redirect = array('default-template.php');
if(in_array($template, $redirect))
{
$file = get_stylesheet_directory() . "/tribe-events/views/".$template;
}
return $file;
}
Thanks for your patience and advice.
Best regards
Hans-Gerd
-
This reply was modified 9 years, 7 months ago by
Hans-Gerd.