Results 1 to 7 of 7

Thread: Customer name code

  1. #1
    Join Date
    Jan 2007
    Location
    Brisbane, Australia
    Posts
    16

    Default Customer name code

    Hi all,

    Im currently customizing my layout of whmcs

    I want to add code that when a user is logged in i can pull thier name from the database for eg:

    Welcome back, Joe Blow

    Any idea's?

    thanks

  2. #2
    Join Date
    Sep 2007
    Location
    Jimboomba, Qld. AU
    Posts
    2,291

    Default

    This should do the job for you
    {if $loggedin}
    Welcome back, {$clientsdetails.firstname} {$clientsdetails.lastname}
    {/if}

  3. #3
    Join Date
    Jan 2007
    Location
    Brisbane, Australia
    Posts
    16

    Default

    Legend

    Had a mind fart before

    Thanks mate

  4. #4
    Join Date
    Jun 2008
    Posts
    221

    Default

    what if the website is form another location? forexample its located in my hosting main website? how can i show the username?

  5. #5
    Join Date
    Jun 2007
    Posts
    886

    Default

    Try:

    PHP Code:

    <?php

              
    include("path/to/dbconnect.php");
              include(
    "path/to/includes/functions.php");
              include(
    "path/to/init.php");
              if (!empty(
    $GLOBALS['clientsdetails']['id']))  {
              echo(
    "Welcome Back {$clientsdetails[firstname]} {$clientsdetails[lastname]}");}
    ?>

  6. #6
    Join Date
    Aug 2009
    Location
    México
    Posts
    82

    Default

    Quote Originally Posted by LemonBarley View Post
    what if the website is form another location? forexample its located in my hosting main website? how can i show the username?

    I want this too!, any ideas?
    The code of BAJI26 not works for me =(

    Regards

  7. #7
    Join Date
    Feb 2010
    Posts
    4

    Default Where to place this

    Quote Originally Posted by sparky View Post
    This should do the job for you
    Would this be placed in the TPL file?

Similar Threads

  1. Insert customer code / number
    By disenioweb in forum Customisation & Integration Questions
    Replies: 0
    Last Post: 06-11-08, 05:13 PM
  2. Directi CC Code Match Customer Country
    By Mysteerie in forum Feature Requests
    Replies: 0
    Last Post: 12-04-07, 03:41 AM