I want to set hourly slots, where sometimes 2 and other times only 1 customer can register. (so sometimes 2 slots are available and other hours only 1 slot is available)
I implemented this now with the help of 2 employees linked to this service, so I can block certain days in the calendar of employee no2, so that on those days only 1 hour slot is available (the one from employee no1)
This seems to work, however when showing the booking form, the client needs to pick on of the two employees first, before making a booking... and I don't want that. I want the client to just book an appointment, without needing to select an employee first... the booking form just needs to see for which days slots are available and automatically select the right employee. How can this be achieved?
You can remove the employee selection from the Customize section.
If you're using the old step-by-step booking form, you need to select the Customize 1.0 option, scroll down a bit and click on the pencil symbol next to the Employee field. In there, you'll be able to hide the field:
In the new Step-by-Step booking form, click on "Service Selection":
Then go to Options and disable the Employee Field:
It's a bit strange that you would need to remove it there because then it's set for all services, while maybe I would expect it to be a setting of the service itself so I can switch it on or of for each service individually... but it works to hide the selection, so that's good! ... however I still have 2 issues:
- in the old form, I now get a stretched calendar, without the month name on it:
- When the appointment is filled in (both on the old and the new form), a summary is shown that also includes the employee name, which I don't want to show... but it seems there is no setting to remove it there...
#1 - point taken. I'll forward this to our developers, so they can look into disabling the employee selection per service. At the moment, you can only enable/disable it for the form (all services).
#2 - I can't replicate this issue. Can you please provide me with the page where I can see the old form?
#3 - You're correct, this can only be hidden with custom CSS.
This should work for the new form:
#amelia-container > div.am-fs__main > div > div.am-fs__main-content.am-fs__congrats.am-fs__main-content > div.am-fs__congrats-info > div > div:nth-child(4) {
display: none;
}
And this should work for the old form:
#am-confirm-booking > div:nth-child(1) > form > div:nth-child(1) > div.el-col.el-col-24.el-col-sm-24 > div > div:nth-child(1) {
display: none;
}
I'll forward this as well to our developers so they can work on including it in the Customize section in the future.
I want to set hourly slots, where sometimes 2 and other times only 1 customer can register. (so sometimes 2 slots are available and other hours only 1 slot is available)
I implemented this now with the help of 2 employees linked to this service, so I can block certain days in the calendar of employee no2, so that on those days only 1 hour slot is available (the one from employee no1)
This seems to work, however when showing the booking form, the client needs to pick on of the two employees first, before making a booking... and I don't want that.
I want the client to just book an appointment, without needing to select an employee first... the booking form just needs to see for which days slots are available and automatically select the right employee.
How can this be achieved?
Or is there a better way to do this?
Kind regards,
Geert
Hello Geert.
That's a great workaround!
You can remove the employee selection from the Customize section.
If you're using the old step-by-step booking form, you need to select the Customize 1.0 option, scroll down a bit and click on the pencil symbol next to the Employee field. In there, you'll be able to hide the field:
In the new Step-by-Step booking form, click on "Service Selection":
Then go to Options and disable the Employee Field:
Let me know if this helps!
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
@aleksander
It's a bit strange that you would need to remove it there because then it's set for all services, while maybe I would expect it to be a setting of the service itself so I can switch it on or of for each service individually... but it works to hide the selection, so that's good! ... however I still have 2 issues:
- in the old form, I now get a stretched calendar, without the month name on it:
- When the appointment is filled in (both on the old and the new form), a summary is shown that also includes the employee name, which I don't want to show... but it seems there is no setting to remove it there...
G.
Hello again Geert.
#1 - point taken. I'll forward this to our developers, so they can look into disabling the employee selection per service. At the moment, you can only enable/disable it for the form (all services).
#2 - I can't replicate this issue. Can you please provide me with the page where I can see the old form?
#3 - You're correct, this can only be hidden with custom CSS.
This should work for the new form:
And this should work for the old form:
I'll forward this as well to our developers so they can work on including it in the Customize section in the future.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
No worries, Geert
I'm not sure how this happened, but one thing that could cause an issue like this is combining the forms (old and the new) on the page.
The old forms are using Vue 2 framework, while the new forms are using Vue 3, so we do not advise placing both on the same page.
Can you please place the shortcode for the old form on a new page, and see if it works?
If not, please provide me with a temporary wp-admin (administrator) user, so I can check it out.
Make sure to enable the PRIVATE response again.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Hey Geert.
It's coming from the theme:
It uses the same class (.c-header) which hides the month selection. When I disable the checkboxes seen in the screenshot above, it appears:
Adding this CSS to the page should fix it:
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
ok, thx! that fixed it!
You can close the ticket
You're welcome, Geert, glad I could help.
Please feel free to reach out to us if you have any further questions or concerns!
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables