how can i remove the "previous" price

so i want to remove it but i think it is based on my dropshipping app is there a way to remove it?

Hi @meldepoot

Can you share with me the Website link to check further on your query?

Thank you

here

Hi @meldepoot

You can follow this instruction here:

  1. Go to Shopify > Theme > Customize

  2. Copy and paste this code on Theme settings > Custom CSS section

.card-information .price.price--on-sale .price__sale span:has(s.price-item.price-item--regular) {
    display: none !important;
}

Here is the result :

1 Like