Table of Contents
Introduction
If you’re using Shopify’s Jumpstart theme, you may have noticed the phrase “Shipping calculated at checkout” on your product pages. While this text is standard, it might not align with your store’s messaging, especially if you offer free shipping. Fortunately, Shopify provides multiple ways to customize this text or remove it entirely.
This guide will show you step-by-step methods to remove the “Shipping calculated at checkout” message and replace it with a custom message, such as “Free Worldwide Shipping.”
Why Remove “Shipping Calculated at Checkout”?
The default message “Shipping calculated at checkout” can create confusion for customers, especially if your store offers free shipping or flat-rate shipping. Here are some reasons to remove or customize this text:
- Reduce Cart Abandonment: Customers may worry about unexpected shipping costs, leading to abandoned carts.
- Reinforce Free Shipping Offers: Replacing the default text with a message like “Free Worldwide Shipping” can encourage purchases.
- Align with Your Brand: Customizing text ensures your store’s messaging aligns with your overall branding and policies.
Method 1: Edit Language Settings
One of the simplest ways to remove or change the “Shipping calculated at checkout” message is through Shopify’s language editor. Follow these steps:
- Go to your Shopify admin and navigate to Online Store > Themes.
- Find your active theme, click Actions, and select Edit languages.
- In the search bar, type “Shipping calculated at checkout”.
- Locate the text in the results and replace it with your desired message, such as “Free Worldwide Shipping” or leave it blank to remove it entirely.
- Click Save.
Note: This method only changes the text where it’s defined in the language settings. If the text is hard-coded in your theme files, you’ll need to use Method 2.
Method 2: Edit Code in Product Template
If the language editor doesn’t work or you want to make more precise changes, you can edit the theme’s code. Here’s how:
- In your Shopify admin, go to Online Store > Themes.
- Click Actions and select Edit Code.
- Locate the file product-template.liquid under the Sections folder.
- Search for the following code block:
- Comment out or remove the entire condition and its contents. The edited code should look like this:
- Click Save to apply your changes.
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
Warning: Always back up your theme before making code changes to avoid accidental issues.
Method 3: Add Free Shipping Message
To replace the default message with something like “Free Worldwide Shipping,” you can add a custom message to your product page. Here’s how:
- Follow the steps in Method 2 to access the product-template.liquid file.
- Search for the line containing:
- Add the following code below it:
- Click Save.
{{ product.vendor }}
<p> FREE Worldwide Shipping</p>
Now, your product pages will display a custom shipping message, enhancing your store’s appeal to customers.
Common Errors and Solutions
Here are some common issues you might encounter and how to fix them:
- Error: “An error prevented it from being saved.”
Solution: Ensure your code syntax is correct, especially when commenting out Liquid tags. Missing or extra tags can cause errors. - Error: “Shipping calculated at checkout” still appears after editing.
Solution: Check other theme files, such as main-product.liquid, or clear your browser cache to view the updated content. - Error: Changes affect unrelated pages.
Solution: Use precise selectors or conditions to limit your changes to specific sections.
Conclusion
Removing or customizing the “Shipping calculated at checkout” message in Shopify’s Jumpstart theme is a straightforward process that can significantly improve your customers’ shopping experience. Whether you use the language editor, modify the theme code, or add a custom message, these methods provide flexibility to tailor your store’s messaging to your needs.
If you encounter any issues, consider consulting Shopify Support or a professional developer for assistance. By refining your store’s details, you can boost customer confidence and encourage more sales.
FAQs
- Can I completely remove the “Shipping calculated at checkout” message?
Yes, you can remove it either through the language editor or by editing the theme’s code. - Will these changes affect checkout functionality?
No, these changes are purely cosmetic and won’t impact how shipping is calculated during checkout. - Do I need coding skills to implement these changes?
Basic coding knowledge is helpful, but you can follow the steps provided to make changes safely. - What if I use a different theme?
The process may vary slightly depending on the theme. Look for similar files like main-product.liquid or product-template.liquid. - How can I restore my theme if something goes wrong?
Before making changes, download a backup of your theme. If needed, you can restore the original file from the backup.