Hey again pankalkulator,
If you have one Service lets say its called House Cleaning and you have one Service Provider named Cleaning Team adding Capacity 3 wouldn’t make a difference as you can’t book more then 1 appointment for that slot as you do not have more providers.
Capacity field is for limiting the workforce, not for increasing it if that makes sense.
You can either use mutliple service providers and create dummy providers but with this your users will have to select different service providers to book same slots or alternatively you can try adding the following to your theme functions.php:
function increase_capacity( $capacity, $service_id, $worker_id ) {
return 3;
}
add_filter( 'app_get_capacity', 'increase_capacity', 10, 3 );
Please note that with this you’ll still have to create 2 dummy service providers but your users should be able to book appointments 3 times on the same slot in case No Preference is selected for service provider.
I’d still suggest going with multiple providers as forcing capacity like this can sometimes not work as expected.
Hope this helps ??
Cheers,
Bojan