Discounts do not appear in the basket

Solved

Discounts do not appear in the basket

DenaHome
Tourist
14 0 1
Accepted Solution (1)

AchieveApplabs
Shopify Partner
233 10 18

This is an accepted solution.

Hi @DenaHome ,

 

For this you would need to modify cart.liquid. You would use Liquid line_item.compare_at_price to display the discounted price. Then add a CSS class for the strikethrough effect. 

 

Sam @ Achieve Applabs

View solution in original post

Replies 3 (3)

AchieveApplabs
Shopify Partner
233 10 18

This is an accepted solution.

Hi @DenaHome ,

 

For this you would need to modify cart.liquid. You would use Liquid line_item.compare_at_price to display the discounted price. Then add a CSS class for the strikethrough effect. 

 

Sam @ Achieve Applabs
DenaHome
Tourist
14 0 1

Ok, so what to write in css?

AchieveApplabs
Shopify Partner
233 10 18

Hi @DenaHome,

 

css can be inline like so:

 

<span style=“text-decoration: strike-through” >

 

Or give it a class name and place the style in between 

 

<head>

  .alt-price {
    text-decoration: strike-through;

  }

</head>

<span class=“alt-price” >

Sam @ Achieve Applabs