Options
Fast Simon Upsell & Cross-sell widgets supports customization options via the JS variable object __fast_options
.
Available Options
Option | Description | Type |
---|---|---|
"upsell_full_page_add_to_cart" | Open full page add to cart | boolean |
"disable_upsell_shadow_root" | Disable the shadow root for upsell widgets | boolean |
How to add custom options:
Add the __fast_options variable to your HTML head within a script tag, for example:
<script>
var __fast_options = __fast_options || {};
__fast_options.disable_upsell_shadow_root = true;
__fast_options.upsell_full_page_add_to_cart = true;
</script>