Articles on: Monster Cart Upsells

Wholesale App Integration (Wholesale Gorilla)

Does Monster Upsells work with wholesale apps?
Yes - We have partnered with Wholesale Gorilla, a wholesale app that offers all of the features you need for your wholesale business!
We currently do not work with any other wholesale app.

To find out more about Wholesale Gorilla click here - https://apps.shopify.com/wholesale-gorilla

How does this integration work?
You can run our upsell cart for all of your retail shoppers, and when your wholesale customers log in, the upsell cart auto hides and they get the wholesale only experience.

How to setup the integration?
This can be a little technical. Only do this yourself if you are confident with editing theme code.
Alternatively - Reach out to our team via chat support and we can easily do this for you

Place the following code in your stores theme.liquid file under the WSG render. - See screen shot below
(This code will conditionally turn off Monster Upsell for wholesale Gorilla logged in customers only)


{% comment %} Code to disable Monster Upsell for WSG customers {% endcomment %}
{%- assign isWsgCustomer = false -%}
{%- if customer.tags != blank -%}
{%- for tag in customer.tags -%}
{%- if shop.metafields.wsg_data.excludeCollections contains tag -%}
{%- assign isWsgCustomer = true -%}
{%- continue -%}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{% if isWsgCustomer == true %}
<script>
window.mu_exclude_pages = [location.href];
</script>
{% endif %}
{% comment %} Code to disable Monster Upsell for WSG customers {% endcomment %}

Updated on: 23/08/2023

Was this article helpful?

Share your feedback

Cancel

Thank you!