danceutah
Forum Replies Created
-
Thanks for implementing this feature in the default calendar. Yes, I would like to see it available with fullcalendar. I realize that is another separate project. Is there a way to modify the end time of events only on the month display?
Awesome, thanks. I’ll start testing it out for my needs. I can’t tell you how much I love this project. If it doesn’t fit my needs is there a way to donate a little somethin’ somethin’ so I can show how much I appreciate your commitment to real features and extendability / integration? Keep up the awesome work!
I should have forked a new topic, but here goes.
Original Function
function tribe_calendar_grid() { set_query_var( 'eventDisplay', 'bydate' ); load_template( TribeEventsTemplates::getTemplateHierarchy('table') ); }Modified to target a year/month
function tribe_calendar_grid($Yr-Month) { set_query_var( 'eventDate', $Yr-Month ); load_template( TribeEventsTemplates::getTemplateHierarchy('table') ); }Calling with ‘2012-06’ produces the calender without any controls populated with events for that month.
Basically all I want to do is embed a calendar or target a calendar page that displays a category. More than one filter would be ideal, so I could produce a calendar specific to a region and an event category.
Is there a query variable that corresponds to the Category?
What would fit my needs awesomely would be the ability to feed a category to the tribe_calendar_grid() function. I have modified this function to target a specific month with
set_query_var( 'eventDate', '2012-05' );So, is there a query variable that corresponds to the Category or another way to accomplish this?