This is the exact question I am looking for. I have blog posts in various categories. However, I only want the posts assigned to category “Calendar” to show on the calendar by default. I tried this shortcode on the page:
[fullcalendar type=”post” category=”calendar”]
or
[fullcalendar type=”post” category=”Calendar”]
That didn’t work. All that resulted is ALL posts disappeared from the calendar.
I tried editing:
/wp-admin/plugin-editor.php?file=wp-fullcalendar/wp-fullcalendar.php
and (after the line “//sort out args”) added:
$_REQUEST[‘category’] = calendar;
or
$_REQUEST[‘category’] = Calendar;
Same thing happened, NO events displayed on the calendar at all. If you look at my blog (https://apta.dmediaweb.com/calendar/) I do have 2 posts assigned to that category. What else can I try? Thank you!