Tweaking jquery Timepicker.co

Hello

I don’t know nothing about code but I was able to implement a datepicker and a timepicker.

I need to tweak the timepicker to show from 12:00-21:30 (I can do this) but I need to disable the ranges between 14:30 and 18:00. Also, if possible, I want ‘12:00’ to tweak to ‘12:00 (Only on Sundys)’.

Anyone can help me out?

Current code below

Thank you in advance.

Arnaud


Here is my site Read-Only: [LINK][1]
([how to share your site Read-Only link][2])

[1]: http:// Webflow - PAMPAS RODIZIO®
[2]: Share a read-only link | Webflow University

inside head

link rel=“stylesheet” href=“//cdnjs.cloudflare.com/ajax/libs/timepicker/1.3.5/jquery.timepicker.min.css

before /body

script src=“//cdnjs.cloudflare.com/ajax/libs/timepicker/1.3.5/jquery.timepicker.min.js”>
script>
$(‘#timepicker’).timepicker({

timeFormat: 'HH:mm',
interval: 15,
minTime: '18:00',
maxTime: '21:30',
defaultTime: 'Selecteer een uur',
startTime: '18:00',
dynamic: true,
dropdown: true,
scrollbar: true,
    
    });

/script>