diff --git a/reservation.inc b/reservation.inc index 3a4159c..77fb8b0 100644 --- a/reservation.inc +++ b/reservation.inc @@ -96,7 +96,8 @@ function reserve_form_reserve_reservation_form_alter(array &$form, FormStateInte $form['reservable_content_type']['#access'] = false; // in prep for having better lockout of having slot taken by another user; let's also hide Length - $form['reservation_length']['#access'] = false; + // Lets not hide the length so mobile users can pick a length. + //$form['reservation_length']['#access'] = false; // hide other fields we don't want to show $form['user_id']['#access'] = false; @@ -183,7 +184,6 @@ function reserve_form_reserve_reservation_form_alter(array &$form, FormStateInte

' . t('Reservation booking for') . ':

' . $bundleName . ': ' . $entity->label() . '
' . t('Date') . ': ' . $date . '
' . t('Time') . ': ' . $time . '
-
' . t('Length') . ': ' . $lengthDisplay . '

', ];