Hi,
Hoping you can help out.
I have the events calendar and am trying to get the day view to be able to start on a specific day, rather than todays current date.
Is there a way of achieving this?
Currently I have amended a function I found that inputs a date into the search bar, however, this breaks the Next Day links and just defaults back to that chosen date.
Is there a way of acheiveing this, so that the day view starts on a specific date but then can keep the Next/Prev day links working? My snippet doesnt affect the list views navigation, just begins the list view on that date.
The function snippet is as follows:
function tribe_set_default_date () {
if ( !is_single() && empty( $_REQUEST['tribe-bar-date'] ) ) {
$_REQUEST['tribe-bar-date'] = '2016-03-11';
}
}
add_action( 'parse_query', 'tribe_set_default_date' );
Many Thanks,
Nick