• Resolved deindorfleben

    (@deindorfleben)


    Hi there,
    Currently bookings calender is only showing future bookings. Is it possible to show past booking events in calender so that people can see a history of bookings e.g. in the last month?

    If not, could the navigation arrow to the left be hided if current month is selected? Therefore it won`t be possible to jump to last month. Alternatively the text “no items to display” should be changed, how could I change this text in bookings calender for last month?

    Thank you!

Viewing 1 replies (of 1 total)
  • Plugin Author moiseh

    (@moiseh)

    Hello,

    – Show past bookings: Unfortunately it’s not possible at moment. Premium version have something like this but to reverse the logic, showing ONLY booked items and not available slots

    – Added a config in new update to disable back button: Disable back button to the past time

    – You add the following code in your theme or child theme functions.php file to change the “no events to display” text:

    add_filter('wbc_fullcalendar_options', function($opts){
    	$opts['noEventsMessage'] = __('My custom message', 'woo-bookings-calendar');
    	return $opts;
    });

    – It’s required to refresh browser cache after plugin update

    Hopefully it helps

Viewing 1 replies (of 1 total)
  • The topic ‘Display past booking events’ is closed to new replies.