Business V11.0.3
Hi,
I am trying to create a blockif to change the product layout seen by different customer groups.
I have tried using DiscountCustomerGroupID but firstly, this variable doesn't seem to work in a Product Layout and secondly, I cant find the values to use for each customer group.
the two blockifs I want to create are:
block if DiscountCustomerGroupID == TRADE - use this code for trade customers
block if DiscountCustomerGroupID != TRADE - use this code for retail customers and Unregistered customers
like this...
I would be very grateful if someone could help me with the variable I should be using to distinguish between customer groups.
Thanks,
Lee
Hi,
I am trying to create a blockif to change the product layout seen by different customer groups.
I have tried using DiscountCustomerGroupID but firstly, this variable doesn't seem to work in a Product Layout and secondly, I cant find the values to use for each customer group.
the two blockifs I want to create are:
block if DiscountCustomerGroupID == TRADE - use this code for trade customers
block if DiscountCustomerGroupID != TRADE - use this code for retail customers and Unregistered customers
like this...
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22DiscountCustomerGroupID%22%20%2f%3e%20%3d%3d%201" > TRADE layout here </actinic:block>
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22DiscountCustomerGroupID%22%20%2f%3e%20%21%3d%201" > RETAIL layout here </actinic:block>
Thanks,
Lee
Comment