How can I hide product prices on collection pages in Empire theme?

Solved

How can I hide product prices on collection pages in Empire theme?

CMolnar
New Member
4 0 0

Hello, 

I am using the Empire theme and I would like to hide the price on the collections pages. I would like to keep it on the individual product detail page however.

Is there a way to do that?

 

Thanks in advance!

Accepted Solution (1)

StoreWatchers
Trailblazer
205 30 39

This is an accepted solution.

Hello @CMolnar


Greetings from the Store Watchers Support Team! Happy to help you today.
 
In your theme.liquid, please paste the code below before the </head> tag.

 

{% if template == 'collection' %}
<style>
  .price.productitem__price{
    display: none!important;
  }
</style>
{% endif %}

 

Note: you may adjust or change the class .price.productitem__price as per your theme structure classes.
 
Let me know if need further assistance 
 

Regards,

Store Watchers Support Team

StoreWatchers - Automate testing for your Shopify store in seconds


If you find my reply helpful, please hit Like and Mark as Solution
Visit us: App Store | Website | FAQs

View solution in original post

Replies 5 (5)

StoreWatchers
Trailblazer
205 30 39

This is an accepted solution.

Hello @CMolnar


Greetings from the Store Watchers Support Team! Happy to help you today.
 
In your theme.liquid, please paste the code below before the </head> tag.

 

{% if template == 'collection' %}
<style>
  .price.productitem__price{
    display: none!important;
  }
</style>
{% endif %}

 

Note: you may adjust or change the class .price.productitem__price as per your theme structure classes.
 
Let me know if need further assistance 
 

Regards,

Store Watchers Support Team

StoreWatchers - Automate testing for your Shopify store in seconds


If you find my reply helpful, please hit Like and Mark as Solution
Visit us: App Store | Website | FAQs
CMolnar
New Member
4 0 0

Many thanks! That worked well.

Naresh_NFD
New Member
8 0 0

Hey, i have created a code to hide price until customer is not logged in and after user come on our store and login they can see the price but i want an approval system where user come and login and after login instead of showing price there will be show wait for approval so the reason behind this i want that only serious people can see the price after the approval not anyone randomly logged in and see the price 
I'm sharing a website link where you see the what i actual want
https://www.arte-n.co.uk/products/wooden-bunk-bed-konrad-with-cot-bed?_pos=2&_sid=d14a705b5&_ss=r

ALPMarketing
Tourist
7 0 1

Good morning! I'm using the Symmetry theme. I copied and placed the provided code in the suggested location but it's not working for me. Any thoughts or suggestions? Thanks!

-Rob

casmstan
Visitor
1 0 0

I am using the Publisher theme and this code also has not worked for me? Any updates as to what I could be doing wrong?