All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi everyone,
I have Nitro theme, please help me removing Estimate shipping and add button of checkout.
Please share your store URL
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
hey @3dforce share the URLs of your website plz
<style>
.mini_cart_tool_btn.is--rates.bee-pr.bee-truncate {
display: none !important;
}
</style>
hey @3dforce dear follow these steps
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body> ----->
before the body ----->
if this code work please do not forget to like and mark it solution
thankyou , suggest method to add checkout button
Go to your Shopify Admin → Online Store → Themes
Click “Actions” → “Edit code”
Find the file:
cart.liquid (or main-cart.liquid / cart-template.liquid, depending on your theme)
Look for a block that outputs the cart form or subtotal.
Add this button code inside the form or after the subtotal:
<a href="/checkout" class="btn btn--checkout">
Proceed to Checkout
</a>
.btn--checkout {
background-color: #000;
color: #fff;
padding: 15px 30px;
border-radius: 5px;
text-align: center;
display: inline-block;
font-weight: bold;
text-decoration: none;
}
Hi @3dforce
If you're using the Nitro theme and want to remove the “Estimate Shipping” section and add a “Checkout” button, here’s how you can do it:
From your Shopify admin, go to Online Store > Themes.
Click Actions > Edit code on your Nitro theme.
Look for a file like cart.liquid, cart-template.liquid, or main-cart.liquid under the Sections or Templates folder.
Find the block of code that mentions:
shipping, shipping_rates, estimate_shipping
or similar phrases.
Comment it out or delete that block carefully.
In the same cart.liquid or relevant cart file, locate the form wrapping the cart items.
Add the following code near the subtotal area or wherever appropriate:
<a href="/checkout" class="btn btn--checkout">Checkout</a>
(You may need to adjust the class name to match your theme styling, such as btn, button, or btn--primary)
Please note:
Always create a backup of your theme or work in a duplicate theme before making code changes.
If you're unsure or the theme is heavily customised, feel free to reach out here with a link or screenshot — happy to assist further!