Hello,
This feature it’s only available in premium version unfortunately.
But, you can add this code in theme functions.php to filter by category slug:
add_filter('wbc_booking_products_args', 'my_booking_product_args', 10, 1);
function my_booking_product_args($args) {
$categorySlugs = !empty($_POST['category_slugs']) ? explode(',', $_POST['category_slugs']) : wbc_option('filter_categories');
if ( !empty($categorySlugs) ) {
$args['tax_query'][] = array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => $categorySlugs,
'operator' => 'IN',
);
}
return $args;
}
Then this shortcodes for example:
Page 1:
[wbc-calendar cat="slug1"]
Page 2:
[wbc-calendar cat="slug2"]