Hello,
In short, I want to show a small calendar on the left of a page, and a list of events on the right. Every time I click on a day in the mini calendar, I want to update the list of events.
Is there a way to accomplish this?
I am trying this: working on a template with 2 columns. One column has a mini calendar:
<div>
echo do_shortcode("[tribe_mini_calendar limit='0']");
</div>
and the other column has the default tribe view:
<div>
tribe_get_view()
</div>
Is there a Javascript function I can call when a day in the mini-calendar is clicked, that will update tribe_get_view()?
Or, is there any other method that accomplishes that? I work with php and javascript extensively, so you can share complex solutions with me.
Thanks in advance!