I'm trying to display the current week of events in list view using the Event Calendar plugin. However, it seems I can only use the 'view' parameter once (either list or week). How can I do this?
Here is my code:
<?php
$now = date( "Y-m-d", time() );
echo do_shortcode('[tribe_events view="week" date="$now"]');
?>
I've adding 'list' to the view param, and adding another view param and combinations of to try and get it to work. My default view is also 'list' in the plugin settings.
Anyone know how I can do this???