Display Shop Promise on your product page
The Shop Promise badge is displayed beside delivery dates and on product pages for eligible deliveries that are estimated to be delivered domestically in the United States in five or less calendar days. This badge lets customers know that their order includes fast and reliable delivery.
After you activate Shop Promise, you should navigate to the product page using your theme editor to confirm that the Shop Promise badge is displaying correctly.
If the badge isn't displaying correctly, then you'll need to manually position the Shop Promise module.
Manually position the Shop Promise module
If you're comfortable reading and editing theme code, then you can identify where to make changes and update the product page.
Identify where to make changes
The code for the Shop Promise module needs to be included in the product form on the product page, which will look something like {%- form 'product', product -%}
. The Shop Promise module can be found in various locations depending on your theme. The following are common locations:
-
main-product.liquid
-
product-form.liquid
-
product-template.liquid
-
product.liquid
Update the product page
Steps:
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.
From the Shopify app, tap Store.
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.
From the Shopify app, tap Store.
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.
Open the relevant file.
Find the line that contains
{%- if block.settings.show_dynamic_checkout -%}
or{{ form | payment_button }}
.Create a new line directly below
{%- if block.settings.show_dynamic_checkout -%}{{ form | payment_button }}{%- endif -%}
and paste the following on that line:
<div class="delivery-promise__promise-container"></div>
- Click Save.
The result should look something like the following:
{%- if block.settings.show_dynamic_checkout -%}
{{ form | payment_button }}
{%- endif -%}
<div class="delivery-promise__promise-container"></div>