Holiday Notice – Support Unavailable on April 18 and April 21

We just wanted to let you know that our support team will be offline on Friday, April 18th (Good Friday) and Monday, April 21st (Easter Monday) due to the holidays.
We'll be back on Tuesday, ready to assist you!

In the meantime, if you need any help, feel free to:

Amelia YouTube Channel

wpDataTables YouTube Channel

Thank you for your understanding, and we wish you a wonderful holiday weekend!

Okay
  Public Ticket #2734383
Selecting appointment time
Closed

Comments

  •  5
    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!