Okay
  Public Ticket #2734383
Selecting appointment time
Closed

Comments

  •  4
    Steve started the conversation

    On the demos, appointment times are showing start and end time, eg 10.30-11.30 - is it possible to show only start time? Couldn't see an option for this in the demo backend

  • [deleted] replied

    Hi Steve,

    thank you for taking interest in Amelia, and for reaching out to us.

    At the moment, it is possible with small customization. You need to add this script on the page with the booking form:

    <script>
    setInterval(function () {
      var elements = document.getElementsByClassName('el-radio-button__orig-radio');
      var appointment_times = document.getElementsByClassName('el-radio-button__inner');
      for (var i = 0; i < elements.length; i++) {
        appointment_times[i].innerHTML = elements[i].value;
      }
    }, 1000)
    </script>

    I hope this helps!