Add a delivery date picker to your cart
You can include a calendar on your cart page that allows customers to specify a delivery date for their order.
On this page
Include jQuery in your theme.liquid
For this customization to work, some themes require that a script tag for jQuery is added to the theme.liquid layout file. If you use a free Shopify Online Store 2.0 theme, then you might need to follow the next step:
In the Layout directory, click
theme.liquid
.Find the closing
</head>
tag in the code. On a new line above the closing</head>
tag, paste the following code:
- Click Save.
Create a delivery date snippet
To create a snippet for your delivery date picker:
Desktop
- From your Shopify admin, go to Online Store > Themes.
- Find the theme you want to edit, click the … button to open the actions menu, and then click Edit code.
- In the Snippets directory, click Add a new snippet:
- Create the snippet:
- Name your snippet
delivery-date
. - Click Create snippet. The new snippet file will open in the code editor.
- Name your snippet
- In your new
delivery-date.liquid
snippet, paste the following code:
- Click Save.
iPhone
- From the Shopify app, tap the … button.
- In the Sales channels section, tap Online Store.
- Tap Manage themes.
- Find the theme you want to edit, click the … button to open the actions menu, and then click Edit code.
- In the Snippets directory, click Add a new snippet:
- Create the snippet:
- Name your snippet
delivery-date
. - Click Create snippet. The new snippet file will open in the code editor.
- Name your snippet
- In your new
delivery-date.liquid
snippet, paste the following code:
- Click Save.
Android
- From the Shopify app, tap the … button.
- In the Sales channels section, tap Online Store.
- Tap Manage themes.
- Find the theme you want to edit, click the … button to open the actions menu, and then click Edit code.
- In the Snippets directory, click Add a new snippet:
- Create the snippet:
- Name your snippet
delivery-date
. - Click Create snippet. The new snippet file will open in the code editor.
- Name your snippet
- In your new
delivery-date.liquid
snippet, paste the following code:
- Click Save.
Include the snippet in your cart page
To include the delivery date snippet in your cart page:
In the Sections directory, click
main-cart-items.liquid
.Find the closing
</form>
tag in the code. On a new line above the closing</form>
tag, paste the following code:
- Click Save.
You now have a delivery date input field on your cart page. When you click inside the text field, a calendar will appear:
The date picker used in this customization is a widget from the jQuery UI library.