gift_card.liquid
The gift_card.liquid
template renders the gift card page, which displays the gift card issued to a customer upon purchase.
Refer to the gift_card.liquid template in Dawn for an example of this template.
Unlike other pages in your store, gift card pages are hosted on the checkout.shopify.com
domain. Gift card URLs contain unique identifiers for your store and gift card:
The following image is an example of how Dawn's gift_card.liquid
template renders the gift card page.

Anchor to LocationLocation
The gift_card
template is located in the templates
directory of the theme:
Anchor to ContentContent
This template can't be a JSON template.
You can include the following in your gift_card template or a section inside of the template:
-
You can also include a QR code or Apple wallet passes.
Anchor to The gift_card objectThe gift_ card object
You can access the Liquid gift_card
object to display the gift card details.
Anchor to UsageUsage
When working with the gift_card
template, you should familiarize yourself with the following:
-
Displaying only the gift card details
To learn how to personalize gift card templates with a custom image, refer to the Shopify Help Center.
Anchor to QR codeQR code
You can include a QR code link by adding JavaScript that generates a QR code. Add the following snippets in the <head>
and <body>
elements of the page, respectively.
To control the content of the QR code, update the text
property with the desired content.
In this example, the QR code links to the store's URL.
Include in <head>
Include in <body>
Anchor to Apple Wallet passesApple Wallet passes
You can include Apple Wallet passes by adding the following snippet to the <body>
element of the page:
Anchor to Display only the gift card detailsDisplay only the gift card details
If you don’t want to include theme elements, like the header and footer, you can choose to render the gift_card.liquid
template with no layout or with a custom layout, using the Liquid layout
object.
For example:
gift_card.liquid
Anchor to Preview the templatePreview the template
You can preview the gift card's appearance by navigating to the gift card template from the theme editor.
- From the theme editor, open the drop-down menu at the top of the page.
- Under Templates, click Others. Then click Gift card.
If you can't find the gift card template in the theme editor's navigation menu, then you might need to insert the content_for_header
Liquid object in the HTML <head>
tag of your gift_card.liquid
template.