How do i hide the price on checkout page?
You can not hide the price. I tried to think of reasons why you may want to do that but nothing obvious came to mind in a checkout flow. The only thing that did is if you’re trying to use checkout as some form of “get a quote” process but there would be other and better ways to handle that.
Why do you need this feature?
Hello There,
Please share your store URL and Password.
So that I will check and let you know the exact solution here.
I want to customise that. our client wants the last step with a price. just customer fill details. We are using e-commerce method for b2b clients.
Hello @ankursingh
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
For total Price
._5uqybw2._1fragem16._1fragem9f._1fragem1q._1fragem26._1fragem3._1fragem34 {
display: none;
}
For subtotal price
span._19gi7yt0._19gi7yte._1fragem1i._19gi7yt1.notranslate {
display: none;
}
For Product price
span._19gi7yt0._19gi7yte._1fragem1i.notranslate {
display: none;
}
Not working
Hello @ankursingh
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
For total Price
._5uqybw2._1fragem16._1fragem9f._1fragem1q._1fragem26._1fragem3._1fragem34 {
display: none !important;
}
For subtotal price
span._19gi7yt0._19gi7yte._1fragem1i._19gi7yt1.notranslate {
display: none !important;
}
For Product price
span._19gi7yt0._19gi7yte._1fragem1i.notranslate {
display: none !important;
}
Not working. Thanks btw.
How to i change cart color to purple in this https://grant-thornton-store.myshopify.com/ store
Hello @ankursingh
Do you want to change the cart icon color?
Yes
Yes. Please share?
Hello @ankursingh
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
svg.icon.icon-cart-empty {
color: #4f2d7f !important;
}
Hello @ankursingh
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
.button, .shopify-challenge__button, .customer button {
background: #4f2d7f !important;
color: #fff !important;
}
Hello. Thanks so much. And is it possible to add a 2 logo in the header? https://grant-thornton-store.myshopify.com/
Hi @ankursingh
you can’t hide prices on the checkout page using code on standard Shopify plans.
Checkout is locked by Shopify (unless you’re on Shopify Plus), so CSS or theme edits won’t work there.
What u usually do instead (and what actually works):
– Hide prices earlier in the flow (product page / collection / cart)
– Replace price + Add to cart with “Request a quote” or custom CTA
– Let customers submit details before reaching checkout
That way customers never see a price at checkout in the first place.
For this setup, some peole use this app to hide prices and buttons by product or collection without touching theme code, and keep checkout clean.
