default bookings list to "all bookings"
In the list/overview of bookings I always have to select "all bookings" or specific users. My bookings are shown by default - but for me, as some kind of "booking admin", it would be really beneficial to see all bookings per default.
Please provide a setting in order to select which behavior a user prefers.
Daniel KnablΒ We have added a hook for the default booking filter. You can use the following hook to make to all bookings by default.
add_filter('fluent_booking/default_booking_filters', function($filters) {
$filters['author'] = 'all';
return $filters;
});
Raiyan MarzanΒ thank you, that's awsome and really helps me with my daily work.