I have recently installed The Events Calendar plugin for the first time. The individual event pages look fine, but the /events page is just giving this output:
<p>Find Events Event Views Navigation View As List Month Day Events In Search Events for March 2016 Calendar Month Navigation Monday Tuesday Wednesday Thursday Friday Saturday Sunday 29 1 2 3 4 5 6 7 8 9 10 11 Test Event 12 13 14 15 16 17 18 Test Event 2 19 20 21 22 […]</p>
I get this problem when using WooTheme’s (very popular) Canvas theme, but not with the 2016 theme.
My canvas theme is fully up-to-date:
Canvas: v5.9.18
WooFramework: v6.2.4
I’ve tried adding the code (from this issue) to my functions file:
/*
* Fix the Events Calendar / Canvas conflict
*/
function tribe_fix_woo_month_issue() {
if (!tribe_is_month()) return;
$GLOBALS['woo_options']['woo_post_content'] = 'content';
}
add_action('woo_post_before', 'tribe_fix_woo_month_issue');
…but it hasn’t fixed the issue. I’ve also turned on debug mode in wp-config.php, but the only output on the frontend are unrelated warning notices:
Notice: Undefined index: action in /home/perfoso4/public_html/wp-content/plugins/wp-filemanager/wp-filemanager.php on line 65
Notice: The called constructor method for WP_Widget is deprecated since version 4.3.0! Use
__construct()
instead. in /home/perfoso4/public_html/wp-includes/functions.php on line 3624
Notice: The called constructor method for WP_Widget is deprecated since version 4.3.0! Use
__construct()
instead. in /home/perfoso4/public_html/wp-includes/functions.php on line 3624
Please help!
Thanks,
James