Okay
  Public Ticket #2566763
Appointment Timings
Closed

Comments

  • DREAMCRAFT started the conversation

    Hey Guys

    I've a service which starts at 9 am & i don't want to mention the end timings.
    So that Peoples can start booking for that service time as 9 am.

    I just want to mention the booking slot timing as only 9 am & not as 9 am to 11 am

    is it possible? how to do this?


  • [deleted] replied

    Hello,

    Thank you for getting in touch.

    Sorry for the delayed response.

    You can customise your page implementing the following JS Script

    <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>

    Please, find the video with the example attached.