saved percentage price

Hi @Buzeto ,

For the sale price as percentage, there’s a confirmed solution for that here on the forums:

https://community.shopify.com/c/shopify-design/how-to-replace-quot-sale-quot-tag-with-quot-discount-percentage/m-p/1824186

To target just the collection use this code, replace “on-sale” with the name of your collection:

{%- if collection.title == "on-sale" -%}
 
{{card_product.compare_at_price | minus: card_product.price | times: 100 | divided_by:  card_product.compare_at_price }}% off

{% endif %}

For the cart drawer, you can look for theme.css in assets folder and add this line:

.mobile-nav>.mobile-nav__item:last-child: {
  color: red;
}

If this answers your question, please remember to mark as solved.