For the complete documentation index, see llms.txt. This page is also available as Markdown.

Customize the date picker

Follow the instructions below to customize the date picker's functionality.

Note: You will need to add the date picker to your store before enabling these changes. Follow the instructions in this article to get started.

  1. From your Shopify admin, click Online Store to arrive at the Themes page.

  2. Find the theme you want to edit, click the Actions ▼ button, then click Edit Code.

  1. On the left side, under the Layout heading, click on the theme.liquid file.

  2. Copy one of the customization snippets located at the bottom of this document.

  3. Navigate to the date picker code, as seen in this article, then locate the following section of code:

6. Paste the copied snippet directly after it.

7. Save your changes.


Customization Snippets


Change the date format

Below are examples of different ways to customize the date format.

  1. Change the date format to 2026-04-30:

  1. Change the date format to 30-04-2026:

  1. Change the date format to Sunday, April 3 2026:

For a full list of formats, navigate here: http://api.jqueryui.com/datepicker/#utility-formatDate


Prevent selecting days in the past before the current day

The snippet below prevents users from selecting dates before the current day. You can adjust the minimum selectable date by changing the number value, where -1 is yesterday, and 2 is two days in the future.

Block out a certain number of days after the current day

Below is an example that only allows users to select 3 days after today.


Block out weekends

Below is a snippet that prevents weekends from being selected.

If you need to block out weekends and specific dates, it is best to use the customization snippet below this instead of this one.


Block out specific days of the week & specific dates

Use this snippet when you need to block both recurring days of the week and specific calendar dates at the same time — for example, blocking Sundays and also closing for a specific holiday.

There are two lines to edit:

The dates line controls which specific calendar dates are blocked. Dates must be in MM-DD-YYYY format. Add or remove dates from this list as needed:

To add April 11th, update the line to:

The days line controls which recurring days of the week are blocked. Replace the numbers with the days you want to block using the day number reference in the "Block out specific days of the week" section below:

To block more than two days, add additional && day != X conditions:

Full snippet:


Block out specific days of the week

Use this snippet to prevent customers from selecting certain days of the week. This is useful if you don't offer delivery or pickup on specific days.

Each day of the week is represented by a number:

Day
Number

Sunday

0

Monday

1

Tuesday

2

Wednesday

3

Thursday

4

Friday

5

Saturday

6

In the snippet, find the line that contains the day numbers. To block a day, add its number to that line. To unblock a day, remove its number.

Example: Block Sunday only

Example: Block Saturday and Sunday

Example: Block Monday through Friday

To add more days, include additional && day != X conditions within the parenthesis:

To allow all days — remove the entire beforeShowDay function from your date picker code.

Block out specific dates

Below is a snippet that blocks out certain dates. In this example, April 8th, April 9th, and April 10th are blocked out. You can change the blocked out dates by adding more dates to the second line.

Dates must be in MM-DD-YYYY format.

To add April 11th, update the second line to:


Start the week on Monday

Below is a snippet that formats the calendar so Monday appears as the first day of the week. You can change the first day of the week by adjusting the number value, with Sunday being 0 and Saturday being 6.


Enable Year or Month dropdown

The snippet below will replace the Year text with a Year Dropdown button so users can select a year quickly.

The snippet below will replace the Month text with a Month Dropdown button so users can select a month quickly.

Use this CSS snippet to better style the month and year drop-down menus:


Set up Minimum and Maximum Year

This snippet formats the calendar so that the year ranges from 1920 to 2020.

This snippet formats the calendar so that the year ranges from 10 years ago to 10 years in the future based on the current year.

This snippet formats the calendar so that the year ranges from 10 years ago to 10 years in the future based on the selected year.


Change "Prev" and "Next" text

Below is a snippet that will allow you to change the default "Prev" and "Next" text that switches months.


Change Month Names

Below is a snippet that will allow you to change the default month names.


Change Day Abbreviations

This snippet will allow you to change the default day abbreviations.


Highlight Today's Date with CSS

  1. On the left side, click on the Assets folder to reveal its contents.

  1. Open your main CSS file (usually named theme.scss.liquid, timber.scss.liquid, or styles.scss.liquid), then scroll to the bottom of the document.

  2. Copy and paste the code snippet below at the bottom of that file.

  1. Save your changes.

Need assistance? Our support team is here to help. All you have to do is request the Expert Install Service from your Infinite Options dashboard, and we can get these customizations added for you.

Last updated