Hi everyone,
I have Nitro theme, please help me removing Estimate shipping and add button of checkout.
A user with the Nitro theme wants to remove the “Estimate Shipping” section from their cart page and add a checkout button instead. They shared a screenshot and their store URL (zunostore.in).
Solutions provided:
To hide Estimate Shipping: Add custom CSS to theme.liquid before the </body> tag to hide the shipping calculator element (specific code snippet provided with selectors).
To add Checkout button: Locate the cart template file (cart.liquid, main-cart.liquid, or similar) and insert a checkout link/button with appropriate styling. Multiple contributors shared HTML and CSS code examples for implementing a styled checkout button.
Key recommendations:
The discussion remains open as the original poster requested the checkout button method after receiving the initial solution.
Hi everyone,
I have Nitro theme, please help me removing Estimate shipping and add button of checkout.
Please share your store URL
hey @3dforce share the URLs of your website plz
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 ----->
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:
Proceed to Checkout
.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:
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.
To Add a “Checkout” Button:1. 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!