We are Exceeding all metrics for a over a year now. But it appears Shopify has discontinued the shop promise banner. Does anyone have it appearing on their webpages? While it’s still appears in the backend, it’s missing from all product pages, and our checkout pages.
Shopify removed the automatic banner, so you’ll need to either re-insert the snippet yourself or lean on a lightweight app to bring back the Shop Promise badge.
You can add the below code:
{% if shop.shop_pay_promise.enabled %}
{{ 'shop-pay-promise-badge.svg' | asset_url | img_tag: 'Buy now, pay later with Shop Pay' }}
{% endif %}
under your “Add to cart” button in your product template, and in the main_checkout section of your checkout extension (if you’re on Shopify Plus).
Could you please specify where/how exactly to add this code? We have multiple product templates so I assume we’ll need to add the code to each, but I’m not sure where within each product template I should be adding it. Thank you!