Please note that this documentation is for the most recent version of this extension. It may not be relevant for older versions. Related documentation can be found in the documentation directory of the extension.
Use additional checkboxes in the request form
If you need more checkboxes in the request form, there are four checkboxes already available that you can use. These are automatically visible as soon as you define a label for them.
Defining the label
The labels can easily be defined via Setup TypoScript:
plugin.tx_bookings._LOCAL_LANG {
default {
tx_bookings_label.booking_request_option1_notice = Please send me information about travel insurance
tx_bookings_label.booking_request_option2_notice = Invoice by email instead of by post
tx_bookings_label.booking_request_option3_notice = Please send me your newsletter
tx_bookings_label.booking_request_option4_notice = Please ...
}
en {
tx_bookings_label.booking_request_option1_notice = Please send me information about travel insurance
tx_bookings_label.booking_request_option2_notice = Invoice by email instead of by post
tx_bookings_label.booking_request_option3_notice = Please send me your newsletter
tx_bookings_label.booking_request_option4_notice = Please ...
}
de {
tx_bookings_label.booking_request_option1_notice = Bitte schicken Sie mir Informationen zur Reiseversicherung
tx_bookings_label.booking_request_option2_notice = Rechnung per E-Mail statt per Post
tx_bookings_label.booking_request_option3_notice = Bitte senden Sie mir Ihren Newsletter
tx_bookings_label.booking_request_option4_notice = Bitte ...
}
}