Hi EZG Team! Intresting question:
Linking Shops: ShopA, ShopB, ShopC
Products:
Item1 (show in ShopA, but hide in ShopB and ShopC)
Item2 (show in ShopA and ShopB, but hide in ShopC)
Item3 (show in ShopB, but hide in ShopA and ShopC)
Item4 (show in ShopA, ShopB and ShopC)
etc.
How to make this structure?
Idea use %IF% macros, for example:
Add for Items text field: Linking_Shop_ID
Item1 %Linking_Shop_ID% value is: ShopA
Item2 %Linking_Shop_ID% value is: ShopA, ShopB
Item3 %Linking_Shop_ID% value is: ShopB
Item4 %Linking_Shop_ID% value is: ShopA, ShopB, ShopC
And in ShopA page use something like this %IF(%Linking_Shop_ID% contains ShopA, show Item, )%
But I can't understand how to make a condition of "contains".
Any ideas how to implement it?