Search code examples
smartycs-cart

how do i get the username in cs-cart smarty block


I'm using the newest Cs-cart and I need to get the username inside a smarty block or any other smarty supported template. I couldn't find the answer in cs-cart knowledge base. thanks


Solution

  • The username is either inside $user_info or $user_data.

    Just dump the var (in your smarty template) to see what's inside: {$user_info|@var_dump}.

    <li class="user-name">{$user_info.firstname} {$user_info.lastname}</li>

    or

    <li class="user-name">{$user_data.firstname} {$user_data.lastname}</li>