How to Remove "Shipping Calculated at Checkout" Text on Product Page in radiant theme?

Topic summary

A user running the Radiant theme wants to remove the “Shipping calculated at checkout” text appearing above the quantity selector on product pages.

Solution Provided:

  • Add custom CSS code to hide the shipping text: .product .product__tax { display: none !important; }
  • Navigate to: Sales Channels > Online Store > Themes > Customize > Settings > Custom CSS

Follow-up Request:
The user then asked how to style the quantity selector button to match the “Add to Cart” button’s rounded borders and thickness.

Additional CSS:

  • Code provided to adjust quantity selector styling with matching border radius and shadow effects

Status: Resolved. The user successfully implemented the solution and expressed gratitude, even offering to share future revenue as thanks.

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

Hello! Shopify discussion platform members, Shopify partners and the users..

I’m using the Radiant theme, and on my product page, the text “Shipping calculated at checkout” is showing above the quantity selector button (screenshot attached).

I want to remove this text but can’t find the right setting to edit.

Can anyone guide me on how to remove it? Any help would be appreciated!

Thanks in advance! I’ll be really thankful.

1 Like

Please add this code to Custom CSS in Sale Channels > Online Store > Themes > Customize > Settings

.product .product__tax { display: none !important; }
1 Like

I have pasted Ans saved the code :+1: .

I have only words for you right now, that you are the gem :gem_stone: .

Do I make the quantity selector button as add to cart is, like with same rounded borders and border thickness to match the looks ?

I would love to share a part of my first monthly revenue, when I’ll start running this store, it’s my final decision.

1 Like

Please add more this code

.product .quantity:after {
    border-radius: 4px;
    box-shadow: 0 0 0 var(--inputs-border-width) rgb(0 0 0 / 30%);
}