Cart refresh and add on support
Learn how to control Downpay's cart refresh and add on support.
Overview
Disable cart refresh
Disable add on support
Downpay has built-in functionality to support:
Refreshing cart subtotals to support slower loading apps
Addon products that add extra fee products to the cart to ensure deposits are calculated correctly.
Jump to top
Add the following code in the <head> section of theme.liquid or equivalent if you'd like to remove this functionality
Jump to top
Add the following code in the <head> section of theme.liquid or equivalent if you'd like to remove this functionality
Jump to top
On this page:
Overview
Disable cart refresh
Disable add on support
Overview
Downpay has built-in functionality to support:
Refreshing cart subtotals to support slower loading apps
Addon products that add extra fee products to the cart to ensure deposits are calculated correctly.
Jump to top
Disable cart refresh
Add the following code in the <head> section of theme.liquid or equivalent if you'd like to remove this functionality
<script>
window.downpay = window.downpay || {};
window.downpay.cartRefreshOn = false;
</script>
Jump to top
Disable Add on Support
Add the following code in the <head> section of theme.liquid or equivalent if you'd like to remove this functionality
<script>
window.downpay = window.downpay || {};
window.downpay.addOnApply = false;
</script>
Jump to top
Updated on: 03/11/2024
Thank you!