I want to display something specific for only one subscription when those users are in the members.php page. My intent is to use if/else statement... if (user has subscription "special") <tr....../tr> else <tr...../tr> How can i call to search users subscriptions for a specific one? What would this code look like. Thanks to all those more educated than i.
add something like this to amember/templates/member.html : {if in_array(5, $_SESSION['_amember_product_ids'])} your code here {/if} replace "5" to actual product id.