As previously announced via banners and our newsletters, support is no longer available through this platform.

For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.

You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.

Paid customers: Please log in to your store account for support.

Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com

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.