Plugin Contributor
Brian
(@brianjessee)
Hi,
Thanks for using TEC. I can help out.
I see you are using the Canvas theme.
By default their template does not show the calendar as it is setup as an archive.
There is a way around it and involves modifying a template.
You can do this in the theme itself, but it is better to create a child theme and add the modified template there.
The template to change is this one:
themes\canvas\content-page.php
In that file you want to find this coding:
if ( ! is_singular() ) {
the_excerpt();
} else {
the_content( __( 'Continue Reading →', 'woothemes' ) );
}
And replace it with this:
if ( class_exists( 'Tribe__Events__Main' ) && tribe_is_event_query() ) {
the_content( );
} elseif ( ! is_singular() ) {
the_excerpt();
} else {
the_content( __( 'Continue Reading →', 'woothemes' ) );
}
That worked for me to show the calendar. Let us know if that works for you.
Thanks
No go… made the changes and broke the entire site… reset – all is fine, except the same issue. I reviewed the code as compared to a 2nd site using Canvas and same plugins – it works on the 2nd site without any code adjustments. Any other ideas? My client is getting impatient.
Hi, I’m having the same problem on my site as well. Any help would be appreciated.
http://alexandriawoodward.com/events/
This plugin is becoming more maintenance than it is worth. I had to deactivate all of my plugins, did not change a single page, and of course when I reactive The Event Calendar the events and calendar disappear. Now I am trying to figure out why and whether or not I have to reinstall the entire thing. This is VERY frustrating.
Hello all,
I was having the same exact issue, same site latest version of Canvas 5.9.15. This is how I fixed it.
Go to Event Settings > Display and select default events template from the drop down. Next make sure to check all the events views under “Enable event views” and select your Default event view.
Not sure why these settings weren’t set (by default?) but I’ve used this plugin with this theme many times and never had any issues until now.
Anyway, changed those settings and everything is working just fine!
Thanks cfatiuk! Everything is working.
Please update here if you’re having an issue still.
Thanks, it is working now. I really appreciate your attention to this issue.