Hi jkbrwn,
This can be a little bit tricky without some code. Are you comfortable writing a little bit of PHP code?
If so, take a look at this micro-plugin. I wrote it for a customer who wanted to remove the party field. It removes the field and removes any validation errors that arise from the missing field.
Removing the time field might prove a bit more complicated, since it gets passed into the date for the booking.
An alternative approach you could take would be to hook into rtb_booking_form_fields
and filter the array which defines the fields. You can then pass a custom callback which would print a hidden rtb-party
field with a dummy time, in the format YYYY/MM/DD
.
That way you wouldn’t need to do any special work around validation. Each booking would just get whatever time you wanted.