How can I write this using smarty tags in an aMember template file? I need to have this in header.html. I'm successfully using this in non-aMember pages. <?php $need_one_from = array(69); if (array_intersect($need_one_from, (array)$_SESSION['_amember_product_ids'])){ print "You have product #69"; } else { print "You don't have product #69"; } ?> Thanks!
Thanks David. Also JUST found: {if in_array(69, $smarty.session._amember_product_ids) } Yeah - you've got product #69. {/if}