If the automatic installation failed due to a custom theme you are using OR if you need to install the app to a different theme, you can install the app manually, 


Following these three easy steps:


1. Reminder Message  :- To display the Reminder message about how many items left in the cart.

<div class='jvd_rem' data-key='{{item.key}}'></div>
  1. Copy the above code snippets
  2. Go to the your Online Store => Themes => Action => Edit code => cart.liquid
  3. Find {%- if property_size > 0 -%} code in your cart.liquid
  4. Paste the copied snippets code behind the find code {%- if property_size > 0 -%


2. Product Item Price  :- To display the items original price in the cart.


<span class='jvd_cip' data-key='{{item.key}}'>{{ item.original_price | money }}</span>


  1. Copy the above code snippets
  2. Go to the your Online Store => Themes => Action => Edit code => cart.liquid
  3. Find {{ item.original_price | money }} code in your cart.liquid
  4. Replace this code {{ item.original_price | money }} with the above snippet code.



3. Product Line Item Price  :- To display the items discount price in the cart.

<span class='jvd_lip' data-key='{{item.key}}'>{{ item.original_line_price | money }}</span>
  1. Copy the above code snippets
  2. Go to the your Online Store => Themes => Action => Edit code => cart.liquid
  3. Find {{ item.original_line_price | money }} code in your cart.liquid
  4. Replace this code{{ item.original_line_price | money }} with the above snippet code.


4. Cart Total Price :- To display the discount total price in the cart.


<span class='jvd_tcp' data-key='{{item.key}}'>{{ cart.total_price | money_with_currency }}</span>


  1. Copy the above code snippets
  2. Go to the your Online Store => Themes => Action => Edit code => cart.liquid
  3. Find {{ cart.total_price | money_with_currency }} code in your cart.liquid
  4. Replace this code {{ cart.total_price | money_with_currency }} with the above snippet code.