I want to show no price on my website.
I want to hide check out page
i want when customer click on add to cart cart page will open and in cart page there will be no check out button only request a quote form.
Now when i click add to cart button its goign directly to cart icon and from there its showing checkout and paypal there is no cart page
#horizon
Hello , whats your site url ?
Hi @learning141 ,
Please share your store url and password if password protected .
Thanks
Manoj
Hi @learning141 ,
Go to Online Store → Themes → Edit code → Sections → main-product.liquid
find this
{{ product.price | money }}
and replace above line with this
{% comment %} {{ product.price | money }} {% endcomment %}
now go to
Assets → global.js
Find the AJAX cart code and replace with:
window.location.href = '/cart';
now go to
Sections → cart.liquid
Below the cart items, add:
<h2>Request a Quote</h2>
<form method="post" action="/contact#contact_form" id="quote-form">
<input type="hidden" name="form_type" value="contact">
<input type="hidden" name="utf8" value="✓">
<textarea name="quote_details" placeholder="Please describe your requirements"></textarea>
<input type="email" name="contact[email]" placeholder="Your Email" required>
<button type="submit">Send Request</button>
</form>
Save and refresh preview.
Thanks
Manoj
Hi @learning141 ,
For your needs, I believe our Samita Quote app could be a great fit. This app allows you to hide prices and replace the checkout button with a quote request form on the cart page.
Currently, the app offers a free plan, so you can try it out and see if it works for your store.
Here’s the link to the app for more details: Samita Quote - Shopify App
Let me know if you need help setting it up!
Best,
Danny from Samita Team <3
Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!
1 Like
You can hide the price from your page by deleting Price blocks from your store admin > Sales channels > Online Store > Themes > Customize
-
Remove price from your colletion: click Homepage dropdown menu at the top center > Collections > Default collection > delete Price block under Product card group
-
Remove price from product page: click Homepage dropdown menu > Products > Default product > open Product information > Details > Header > remove Price block and Buy buttons, and add a request a quote form in your product page instead cart page.
What you’re looking to build is more of a quote-request flow instead of a normal checkout. By default, Shopify pushes customers to checkout, but you can achieve your setup with a few tweaks
Hide product prices and disable checkout.
Replace the checkout button in the cart with a Request a Quote form.
Use apps like Request a Quote & Hide Price or custom code adjustments in your theme to redirect the cart button to your quote form.
I’ve done this kind of customization for other Shopify store owners — happy to share a quick demo if you’d like. Feel free to DM
Hey! I’ve worked with Shopify Horizon before, so I can share a few tips that might help. Horizon is great for customizing storefronts and managing themes, but it can feel overwhelming at first. Here are a few steps to get you started:
-
Set Up Your Workspace: Make sure you have the latest version of the Shopify CLI installed. Horizon relies on this for theme development and deployment.
-
Understand the Theme Structure: Take some time to familiarize yourself with Liquid templates and JSON templates since Horizon uses these for customization.
-
Preview Changes Safely: Use the shopify theme dev
command to run a local server and preview changes before pushing them live.
-
Use Sections and Blocks Wisely: Horizon allows for modular customization. Keep things organized so your store stays fast and easy to edit later.
If your store is pet-related, check out Love Your Pets Daily for inspiration—they have great content ideas and pet-friendly branding tips that can make your shop more engaging to animal lovers. I’ve seen pet stores get amazing results when they use quality content alongside their products.
Let me know where you’re stuck—custom code, theme edits, or just setup? Happy to help!