There is a way to show stuff only to B2B customers. If you use the code below, it returns either true or false.
{{ customer.b2b? }}
Then you can use that to build something like:
{% if customer.b2b? %}
show some stuff for b2b customer
{% endif %}
There is a way to show stuff only to B2B customers. If you use the code below, it returns either true or false.
{{ customer.b2b? }}
Then you can use that to build something like:
{% if customer.b2b? %}
show some stuff for b2b customer
{% endif %}