I’ve been struggling with this for a bit, so I thought I’d get some advice on what other things I should be looking for. I have this bit of code setup, but, if I am not in one of the groups specified below, I still get the result returned, instead of the if:else result. The thing is, I have the exact same conditional setup on another part of the site and it’s working there. What might I be overlooking?
{if group_id == '7' OR group_id =='1' OR group_id == '8' OR group_id == '9'}
<a href="#unique" class="productAdd">Add to Cart</a>
{if:else}
<a href="http://regular">Add to Cart</a>
{/if}