I need to do the exact same thing but unable to find what you’re talking about.
Looking in the bookingform, I see this:
<form id='em-booking-form' class="em-booking-form" name='booking-form' method='post' action='<?php echo apply_filters('em_booking_form_action_url',$_SERVER['REQUEST_URI']); ?>#em-booking'>
<input type='hidden' name='action' value='booking_add'/>
<input type='hidden' name='event_id' value='<?php echo $EM_Event->event_id; ?>'/>
<input type='hidden' name='_wpnonce' value='<?php echo wp_create_nonce('booking_add'); ?>'/>
<?php
// Tickets Form
if( ($can_book || get_option('dbem_bookings_tickets_show_loggedout')) && (count($EM_Tickets->tickets) > 1 || get_option('dbem_bookings_tickets_single_form')) ){ //show if more than 1 ticket, or if in forced ticket list view mode
do_action('em_booking_form_before_tickets', $EM_Event); //do not delete
//Show multiple tickets form to user, or single ticket list if settings enable this
//If logged out, can be allowed to see this in settings witout the register form
em_locate_template('forms/bookingform/tickets-list.php',true, array('EM_Event'=>$EM_Event));
do_action('em_booking_form_after_tickets', $EM_Event); //do not delete
}
?>
I have 4 ticket types but only want people to be able to take one type. The radio button is acceptable as a workaround but I can’t figure out how to do that in this code ??