I am using the Icon theme and have my prices hidden unless you are logged in.
Two things are happening when I hide the prices.
-
The price is hidden but the 18% off sale tag still shows up. See herehttps://www.yourskincaresource.com/collections/alastin-skincare
-
When I use the “compare at” price feature the login or register to view prices appears twice.
Any advice? I have enclosed link for review. Thank you in advance
1 Like
Hi,
I hope you are doing good.
To hide sale badge, search for “sale-item” in your snippet
and wrap that to
{% if customer %}
Your sale badge code here
{% endif %}
You can try it at every place which you want to show only to logged in customers.
I hope the above is useful to you.
Thanks!
Hello There,
Admin go to online store → themes → actions → edit code
Find Asset >stylesheet.css and paste this at the bottom of the file:
.sale-item.sale-item--percentage.icn {
display: none;
}
1 Like
Hooray!! That worked, thank you!
1 Like
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.
Hi,
But there is no such property product.price_visible on product object in shopify
Thanks!