在新发布的Stencil基石中,除非用户已登录,否则现在可以限制显示价格
使用 -
{{#or customer (if theme_settings.restrict_to_login '!==' true)}}
但有没有办法只显示用户登录并在用户组中的价格?
我们需要能够在他们看到价格之前批准客户帐户,这似乎是一种很好的方式,所以除非他们被投入一个团队,否则他们无法看到价格,
这可能吗?
到目前为止,我已经尝试了
{{#or customer (if customer_group_id '!==' 3)}}
{{> components/products/price price=price customer=customer}}
{{/or}}
和
{{#or customer (if customer.restrict_to_login '!==' true)}}
{{#if customer.customer_group_id '!==' 3}} {{> components/products/price price=price customer=customer}} {{/if}}
{{/or}}
谢谢!