How can I set blackout delivery dates on my website?

Hi there,

I have set up a delivery date picker in my web using these instructions: https://shopify.dev/tutorials/customize-theme-add-date-picker-for-delivery-dates

However, I am not able to blackout dates (our delivery schedule goes from Tuesday to Saturday).

What is the best way to do this?

Thanks a lot,

Daniela

Try to Update this:

​$("#datepicker").datepicker({
    beforeShowDay: function(date) {
        var day = date.getDay();
        return [(day != 1 && day != 2)];
    }
})​​​​​;​

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.