Hide prices Dawn

Solved

Hide prices Dawn

Klights
Tourist
6 0 3

 

Dawn 15.3.0 is the latest version.

How do I hide the prices? 

 

Thank you.

Accepted Solution (1)

Shinerds
Shopify Partner
32 11 3

This is an accepted solution.

You can hide prices in Dawn 15.3.0 by using CSS or editing the Liquid code. Here are a couple of ways to do it:

 

1. Using CSS (Quick & Easy)
Add the following CSS to your theme.liquid file before the closing </head> tag or in your custom CSS section:

  • Go to Online Store > Themes > Edit Code
  • Find Base.css and paste it at very bottom

.price {
      display: none !important;
}


This will hide all prices across your store.

 

2. Editing the Liquid Code (More Control)


If you want to remove prices from specific areas, edit the relevant sections in your theme files:

 

  • Go to Online Store > Themes > Edit Code
  • Open main-product.liquid (for product pages) or card-product.liquid (for collection pages)
  • Look for {% render 'price' %} or {{ product.price }}

Remove or comment out the line

Let me know if you need more details! 🚀

- We Build Innovating Solutions for a Brighter Future.
- Drop an email if you are looking for quick fix or any customization
- Email: shinenerdsofficial@gmail.com

View solution in original post

Replies 6 (6)

Asad-Mahmood
Shopify Partner
395 67 76

What's your store url ?

If my solution has been helpful, you can consider supporting me via Buy Me a Coffee.
Hire me: asadmahmood8470@gmail.com
WhatsApp
Fiver




Moeed
Shopify Partner
7375 1996 2437

Hey @Klights 

 

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


Shinerds
Shopify Partner
32 11 3

You can hide prices in Dawn 15.3.0 by using CSS or editing the Liquid code. Here are a couple of ways to do it:

1. Using CSS (Quick & Easy)

Add the following CSS to your base.css file:

 

  • Go to Online Store > Themes > Edit Code
  • Open Base.css and add this code
.price {
     display: none !important;
}
 

his will hide all prices across your store.

2. Editing the Liquid Code (More Control)

If you want to remove prices from specific areas, edit the relevant sections in your theme files:

  • Go to Online Store > Themes > Edit Code

  • Open main-product.liquid (for product pages) or card-product.liquid (for collection pages)

  • Look for {% render 'price' %} or {{ product.price }}

  • Remove or comment out the line

Let me know if you need more details! 🚀

- We Build Innovating Solutions for a Brighter Future.
- Drop an email if you are looking for quick fix or any customization
- Email: shinenerdsofficial@gmail.com

Shinerds
Shopify Partner
32 11 3

This is an accepted solution.

You can hide prices in Dawn 15.3.0 by using CSS or editing the Liquid code. Here are a couple of ways to do it:

 

1. Using CSS (Quick & Easy)
Add the following CSS to your theme.liquid file before the closing </head> tag or in your custom CSS section:

  • Go to Online Store > Themes > Edit Code
  • Find Base.css and paste it at very bottom

.price {
      display: none !important;
}


This will hide all prices across your store.

 

2. Editing the Liquid Code (More Control)


If you want to remove prices from specific areas, edit the relevant sections in your theme files:

 

  • Go to Online Store > Themes > Edit Code
  • Open main-product.liquid (for product pages) or card-product.liquid (for collection pages)
  • Look for {% render 'price' %} or {{ product.price }}

Remove or comment out the line

Let me know if you need more details! 🚀

- We Build Innovating Solutions for a Brighter Future.
- Drop an email if you are looking for quick fix or any customization
- Email: shinenerdsofficial@gmail.com
Klights
Tourist
6 0 3

Thank you. It works

tim
Shopify Partner
4309 495 1582

As @Shinerds pointed the easiest would be to use CSS; my only correction is to put their code into Theme Settings=> Custom CSS, editing theme code will make updates to your theme difficult.

 

Just be aware -- doing this (or editing liquid as suggested) would not really hide prices from Google (as Google also sees structured data on your pages) or clever visitors who can always add .js  or .json to the end of your URL and read pricing information from the JSON output...

If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com