Remove pricing completely from Dawn theme

Topic summary

A user is converting their Shopify store (Dawn theme) into a B2B quotation system where customers can add items to cart and request pricing via email, rather than seeing prices or completing purchases directly.

Solution Progress:

  • Initial CSS code was provided to hide pricing throughout the store by adding custom styles to the theme.liquid file above the </body> tag
  • Additional code was added to remove pricing from cart and product option displays using .product-option { display: none !important; }
  • Screenshots confirm successful removal of prices from product pages and cart

Current Status:
The discussion remains ongoing. The user is now requesting guidance on removing the total and payment sections from the checkout process to complete the quotation-only workflow. The helper has successfully resolved previous requests and appears ready to continue assisting.

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

I m designing the store for B2b purposes to collect the customer enquiries so that we can submit the pricing to individual enquiries via email. I am using dawn theme and want to eliminate pricing aspect altogether from the store. Just want the customer to add the items required and submit the cart for getting the quotation.

Please guide how do I go about it?

1 Like

Hey @khanaatif

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


If I managed to solve your problem then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Thanks @Moeed it worked. Is there a way to remove it from the cart and checkout also?

1 Like

Hey @khanaatif

Your website is password protected, can you share the front end password?

Best Regards,

Moeed

Hi @Moeed , I have removed the password. You can please take a look now.

1 Like

Hey @khanaatif

Keep the previous code and add this new code above in the end of theme.liquid file

.product-option {
    display: none !important;
}

RESULT:

If I managed to solve your problem then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

That did worked brother @Moeed . Thanks a lot.

Is it possible for you to guide me on how to remove the total and payments sections?