I have a variable called GiftSection which is set to type Text and set at the product level.
I have this variable in a BlockIf that says:
GiftSection == "Jewellery"
This works fine and runs the code in the block if the variable is set to 'Jewellery'
see:
http://community.actinic.com/showthread.php?t=39366
What I really want to do is replace 'Jewellery' with the 'SectionName' variable as I only want to show products in the section of their name.
If I change the BlockIf to:
GiftSection == "SectionName"
I get and invalid expression error, if I remove the quotes it just doesn't work.
What am I doing wrong?
I have this variable in a BlockIf that says:
GiftSection == "Jewellery"
This works fine and runs the code in the block if the variable is set to 'Jewellery'
see:
http://community.actinic.com/showthread.php?t=39366
What I really want to do is replace 'Jewellery' with the 'SectionName' variable as I only want to show products in the section of their name.
If I change the BlockIf to:
GiftSection == "SectionName"
I get and invalid expression error, if I remove the quotes it just doesn't work.
What am I doing wrong?
Comment