I have spent the last hour (plus) trying to find an answer about how to set my calendar as my home page. Since it’s not a real page, I can’t do this in the Reading Settings. Is there anyway to do this? Thank you.
The easiest way to do this is via a PHP include function that you will need to call in your theme template, likely your theme’s page.php. Here an example of what you would add somewhere in your page.php file:
if(is_front_page()) {
include('wp-content/plugins/the-events-calendar/views/gridview.php');
}