Skip to main content

Options

Fast Simon Upsell & Cross-sell widgets supports customization options via the JS variable object __fast_options.

Available Options

OptionDescriptionType
"upsell_full_page_add_to_cart"Open full page add to cartboolean
"disable_upsell_shadow_root"Disable the shadow root for upsell widgetsboolean

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>