A pre-sales question: I installed the free version of The Event Calendar and so far it seems to be perfect for my site. The few features I’m missing seem to be included in PRO.
One thing I haven’t been able to get working yet:
My site show previews of the six most recent blog posts on the front page. Included in theese previews are (1) title, (2) image, (3) date, (4) comment count, and lastly, (5) category. In the plugin settings of The Event Calendar, I activated the option to add events to the blog loop, so both regular blog posts and events are shown. However, the category (5) is not included when an event is displayed.
My WordPress template fetches and displays blog post categ
ories via the following three lines of code:
<?php if (has_category()) : ?>
<p class=”post-categories”><?php the_category(‘, ‘); ?></p>
<?php endif; ?>
How can I modify these three lines so event categories are displayed as well?
Thanks in advance for your help! The Event Calendar is amazing so far.