I just installed Events Calendar Pro 2.0.3 and I have the ‘Events Template’ option set to ‘Default Page Template’ and everything works, except the single category calendar view. You can see here: http://sacramentoworks.org/events/category/bic-workshops/
That’s very bizarre, EMRL – sorry to hear you’re having issues. It’s very possible that this is a conflict with another plugin or your theme; are you in a position where you can test deactivation of those to see if a resolution is reached? Another suggestion that often works for situations like this is to resave the permalinks page (no change needed; just resave). Let me know about those points and we can keep looking into this as needed.
Oh, figured it out. It was a template issue. Thanks. I had something similear to:
if (is_archive() OR is_search())
{
the_excerpt();
}
else
{
the_content();
}
So after the upgrade it was falling into that “if” block and only outputting the excerpt (stripping all HTML). I changed the “if” to: if ((is_archive() OR is_search()) AND ! is_tax('tribe_events_cat')) and it works correctly now.
Hey, awesome to hear you got this figured out. If anything else comes up or you need any further assistance let me know, we’d be happy to do what we can here.