Deleting "shipping calculated at checkout" from gift card page only

Topic summary

A user seeks to remove the “shipping calculated at checkout” text from their Shopify gift card product page, since gift cards are digital and don’t require shipping. The Shopify gift card template doesn’t provide a checkbox option to mark the product as non-physical.

Solution provided:

  • Create a new custom product page template
  • Hide the default price block under product information
  • Insert a custom Liquid code block with specific markup to display price without shipping text

The solution was confirmed working by another user experiencing the same issue. The discussion appears resolved with a technical workaround using Shopify’s templating system.

Summarized with AI on November 4. AI used: claude-sonnet-4-5-20250929.

Hi. I just added a gift card option to my site using the Shopify gift card template and I’m wondering if there’s a way to remove the “shipping calculated at checkout” text under the name and price of the product on the product page. Because it’s a template it doesn’t give me the option to check a box stating that it’s not a physical product and therefore doesn’t require shipping. Any help is greatly appreciated! Here’s a link to the page: https://hazeltinescent.co/products/gift-card

I’m having the same issue. Still can’t figure it out!

I figured it out!

create another product page template and rename it whatever you’d like. Then hide the price block under product information. Then inset a custom liquid block with the below code. VOILA


              {%- render 'price', product: product, use_variant: true, show_badges: true, price_class: 'price--large' -%}
            

2 Likes

You, sir, ROCK! Thank you! Perfect!