subscription specific behavior

Discussion in 'Templates customization' started by MeanderingCode, May 9, 2006.

  1. MeanderingCode

    MeanderingCode New Member

    Joined:
    Apr 29, 2006
    Messages:
    16
    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.
  2. alex

    alex aMember Pro Customer Staff Member

    Joined:
    Jan 24, 2004
    Messages:
    6,021
    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.

Share This Page