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>- Copy the above code snippets
- Go to the your Online Store=>Themes=>Action=>Edit code=>cart.liquid
- Find {%- if property_size > 0 -%}code in yourcart.liquid
- 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>- Copy the above code snippets
- Go to the your Online Store=>Themes=>Action=>Edit code=>cart.liquid
- Find {{ item.original_price | money }}code in yourcart.liquid
- 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>- Copy the above code snippets
- Go to the your Online Store=>Themes=>Action=>Edit code=>cart.liquid
- Find {{ item.original_line_price | money }}code in yourcart.liquid
- 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>- Copy the above code snippets
- Go to the your Online Store=>Themes=>Action=>Edit code=>cart.liquid
- Find {{ cart.total_price | money_with_currency }}code in yourcart.liquid
- Replace this code {{ cart.total_price | money_with_currency }}with the above snippet code.

