Hi there,
I cannot modify the booking form. There are no additional fields.
Thank you for you help.
Reto
Reto Scartazzini
Hi Reto,
Can you provide some more detail? Can you access the Settings > Event Organiser > Booking form page? Can you see the booking form there, and the fields on the right hand side? If so, what happens if you click a field to add it to the form and save your changes?
Stephen Harris
Hi Stephen,
thanks for your answer.
Yes under Settings > Event Organiser > Booking form page I see the booking form, i can create a new Booking form but there is no window with the fields right hand side. Save button is there, settings are there, but the additional fields are missing.
Reto Scartazzini
Hi Reto,
I’ve not been able to reproduce this. I think something similar has been reported once before, and that was due to a plug-in conflict. I’ve just sent you an e-mail to see about investigating this further.
Stephen Harris
Hi Reto,
Thank you for providing access to the site. The issue is a ‘bug’ with the Language Icon Flags switcher plugin. In particular in https://swisspadel.ch/wp-content/plugins/language-icons-flags-switcher/style.css?ver=5.0.3 it is doing the following:
#wpfooter {
display: none;
}
Pro uses the footer to determine how to position the metaboxes for adding fields to the form (they are typically “sticky” until the bottom hits the footer).
You could probably fix the issue by loading the following on the admin screens:
#wpfooter {
display: block!important;
}
Stephen Harris