Articles on: 🛒 Monster Cart Upsells

Wholesale App - Integration (Wholesale Gorilla)

Does Monster Upsells Play Nice with Wholesale Apps?


Yes! We've shaken hands with Wholesale Gorilla, your go-to for all things wholesale.
At the moment, they're our exclusive wholesale app partner.

🔗 Get to know Wholesale Gorilla here.

How does this integration work?


Our upsell cart is visible to retail shoppers, but it automatically hides for logged-in wholesale customers, ensuring a seamless wholesale experience.

How to setup the integration?


If you're comfortable with editing theme code, you can set up the integration yourself. Otherwise, our support team is ready to assist. Simply reach out via chat support.

Here's the magic code:
Please note: 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: 16/11/2023

Was this article helpful?

Share your feedback

Cancel

Thank you!