adding user data

Discussion in 'Templates customization' started by agorman, Sep 25, 2006.

  1. agorman

    agorman New Member

    Joined:
    Sep 12, 2006
    Messages:
    22
    I have upgraded to amember pro from trial version without any issues. Iverythinks works great - it is such a niffty programme. thankyou !

    Can anyone please tell me who to add the product expiry date to member profile page.

    I have managed to add {$smarty.session._amember_user.name_f} for welcome..., but do not now where to find refernces to the adding expiry.

    Is ther a list of these smarty codes anywhere?

    Thanks

    Adrian
  2. hilary

    hilary aMember Pro Customer

    Joined:
    Aug 22, 2006
    Messages:
    104
    *bump*
    I could really use this list, too.
  3. alex

    alex aMember Pro Customer Staff Member

    Joined:
    Jan 24, 2004
    Messages:
    6,021
    There is no the list, but you can do
    PHP:
    <pre>
    <?php
    session_start
    ();
    print_r($_SESSION);
    ?>
    to see all variables aMember adding to the session.

    It is not easy question with variable, member can have several subscriptions, which one would you like to see?
  4. bigmarketing

    bigmarketing Guest

    Joined:
    Jul 7, 2006
    Messages:
    6
    So how can I output member first name? name_f
  5. alex

    alex aMember Pro Customer Staff Member

    Joined:
    Jan 24, 2004
    Messages:
    6,021
    $_SESSION['_amember_user']['name_f']

    $_SESSION['_amember_user']['name_l']

    $_SESSION['_amember_user']['email']

Share This Page