Hello himalbambouk2021,
Please note that the shortcode with ‘selected_service’ should accept only one value whle you’re passing the 3 values in it and that’s why it’s displaying the step by step Booking Form.
The ‘selected_service’ parameter is used when you want to pre-selected a service.
Thanks
from https://www.bookingpressplugin.com/documents/shortcodes/:
“3. [bookingpress_form service=1] – This shortcode will display the Booking wizard with the service having ID 1.
4. [bookingpress_form selected_service=1] – This shortcode will display the Booking wizard with the service is selected having ID 1.
Enter comma-separated service Ids to add multiple services”
Which shortcode does the last phrase refer to? It is logical to assume from the name that it refers to “selected_service”, otherwise how does “selected_service” differ from “form service”? However, it unexpectedly turned out that it is the shortcode like [bookingpress_form service=1,3,4] that works.
Please, make your documentation more clear.
So the conclusion: multiple services can be added to “bookingpress_form service” but not to “bookingpress_form selected_service”.
Hello,
The shortcode “[bookingpress_form selected_service=1]” is designed to display a form with the service having ID 1 already selected for the user. On the other hand, the shortcode “[bookingpress_form service=1]” will display only the service with ID 1 for booking, without any pre-selection.
When you attempted to use “[bookingpress_form selected_service=1,2,3]”, it resulted in the display of a step-by-step form because the shortcode is not designed to handle multiple IDs for the selected_service attribute as BookingPress doesn’t allow selecting multiple services at once. The instruction to “Enter comma-separated service IDs to add multiple services” applies specifically to the [bookingpress_form category=1] and [bookingpress_form service=1] shortcodes, not the selected_service shortcode.
I hope it helps!
Thanks