Solved

Remove prices from Collections Pages - Icon theme

bnovak87
Tourist
4 0 2

I'm using the ICON theme and want to remove the prices from the collections page.  The prices would still be see on the product pages, but not in the collections pages.

Does anyone know how to change this?

Accepted Solution (1)
Developer-G
Shopify Partner
3079 604 856

This is an accepted solution.

Use this css

.template-index .price.price--listing {
    display: none;
}

 

Thanks

- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on store Hire me.
- Email: guleriathakur43@gmail.com - Skype: navrocks1 ,
- Try GEMPAGES a great page builder
-Advance Search Filter

View solution in original post

Replies 4 (4)

Developer-G
Shopify Partner
3079 604 856

Hello @bnovak87,

1. Go to Online Store->Theme->Edit code
2. Asset->stylesheet.css-> paste bellow code in bottom of file

.template-collection .price.price--listing {
    display: none;
}

Thanks

- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on store Hire me.
- Email: guleriathakur43@gmail.com - Skype: navrocks1 ,
- Try GEMPAGES a great page builder
-Advance Search Filter
bnovak87
Tourist
4 0 2

Thanks . That works BUT I also want to NOT show the prices in the featured collection on the homepage.  I thought these involve the same coding, but the prices are still showing on the homepage.    How do I remove the prices on the featured collection too?

Thanks!

 

Developer-G
Shopify Partner
3079 604 856

This is an accepted solution.

Use this css

.template-index .price.price--listing {
    display: none;
}

 

Thanks

- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on store Hire me.
- Email: guleriathakur43@gmail.com - Skype: navrocks1 ,
- Try GEMPAGES a great page builder
-Advance Search Filter
bnovak87
Tourist
4 0 2

@Developer-G That worked perfectly.  Thanks!!!