Shipping Rate on Cart Drawer

Solved

Shipping Rate on Cart Drawer

flo3393
Excursionist
32 2 6

Hi there!

i would like to add a line of shipping rate into the cart drawer. Can someone help? 
I dont want to use a app because it should be code.

Shoul be like this:

Price
Shipping price (if price is under 299€ then 4,99€ and if more than 299€ free)
Total Price (sum of Price+Shipping)

 
 
 
 
 
 
Accepted Solution (1)

diego10_01
Shopify Partner
10 1 2

This is an accepted solution.

Hi, 

It's not really that complicated. First, you need to find the cart drawer file, I would dare to say that it's located in the snippets folder, and it must be called cart-drawer.liquid, however, file names depend on your theme.

Open that file and find the place of the HTML doc where you want to place the code so that it renders correctly on screen.

Build the HTML structure and style it with CSS.

Then you may include the LIQUID logic. Would be something like this (not exactly it, but this is how the logic goes):

 


<div class="container">
<p>price:</p>
<p>{{product.price}}</p>

<p>Shipping Price</p>

<p>{% if product.price < 299  %}{{checkout.shipping_price}}{% elsif product.price > 299 %} Free {%endif%}</p>
<p>Total Price:</p>

<p>{{checkout.total_price}}</p>
<div>

That's it.

Hope that's helpful. 

View solution in original post

Replies 2 (2)

diego10_01
Shopify Partner
10 1 2

This is an accepted solution.

Hi, 

It's not really that complicated. First, you need to find the cart drawer file, I would dare to say that it's located in the snippets folder, and it must be called cart-drawer.liquid, however, file names depend on your theme.

Open that file and find the place of the HTML doc where you want to place the code so that it renders correctly on screen.

Build the HTML structure and style it with CSS.

Then you may include the LIQUID logic. Would be something like this (not exactly it, but this is how the logic goes):

 


<div class="container">
<p>price:</p>
<p>{{product.price}}</p>

<p>Shipping Price</p>

<p>{% if product.price < 299  %}{{checkout.shipping_price}}{% elsif product.price > 299 %} Free {%endif%}</p>
<p>Total Price:</p>

<p>{{checkout.total_price}}</p>
<div>

That's it.

Hope that's helpful. 

flo3393
Excursionist
32 2 6

Thanks!