https://empiricalwater.com/collections/all
Need to remove those prices that are being crossed out. All it needs to say is the price or “From” price.
Thanks, let me know if my request is unclear.
https://empiricalwater.com/collections/all
Need to remove those prices that are being crossed out. All it needs to say is the price or “From” price.
Thanks, let me know if my request is unclear.
Hi Empiricalarby. Try looking at this post: Solved: Hide Sale Tag and Compare at Price at Dawn Theme - Shopify Community
Hi Empiricalarby, To remove the “Compare At” prices on the shop page of your website, you’ll likely need to edit the code of your Shopify theme.
Here’s a general guide on how to do this:
Access Your Shopify Admin →
Go to Theme Editor->
Edit Code →
Locate the Product Template (This file is often named something like product.liquid or product-template.liquid.) →
Find the Code for “Compare At” Prices (Within the product template, search for the code that displays the “Compare At” prices. This code will likely include something like {{ product.compare_at_price | money }}.) →
Remove or Comment Out the Code:
(Once you’ve located the code responsible for displaying the “Compare At” prices, you can either delete it entirely or comment it out. To comment out the code, surround it with {% comment %} and {% endcomment %})
{% comment %}
{{ product.compare_at_price | money }}
{% endcomment %}
Save Changes → Preview and Test ->Publish Changes.
This is Richard from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
{%if template contains 'collection'%}
{% endif %}
Hope this can help you solve the issue
Best regards,
Richard | PageFly
{% if template contains ‘product’ or template contains ‘index’ %} .price__sale s.price-item.price-item–regular { display:none; } {% endif %}
Copy - Paste this code in the theme.liquid before to hide for all products the option " compare at price"