I do not know how to handle early booking the right way!
If you have early bird, normal and late fees you want to display in a time window, which is ok at the moment.
But then I do have this "normal" fee in addition which comes from the typical fee setting.
This normal fee should be switched off, if you have additional fees.
my additional fees are then: early, regular and late, all in a specific time slot.
At the moment I do it in my template by switching the display off with:
.mat_event_XX #TicketForm .mat_tickets_row:nth-child(2) {
display: none;
}
And also the fee in the list is showing the wrong amount, so I switched that of as well with:
.mat_event_fees {
display: none;
}
Is there any chance in the future to handle it the right way?
Because if I go to the booking form, there is still a drop down field with that "normal" price.
Esp. when it comes to late booking this is not working well.