Support

Account

Home Forums General Issues Pull in fields from page with same name as username Reply To: Pull in fields from page with same name as username

  • Hi @phil.owen

    Just to clarify, you don’t want the username as $other_page, you want the user ID:

    
    $other_page = 'user_' . $current_user->ID;
    

    Have you debugged the value returned yet?
    var_dump($values);

    Perhaps the value is loading, but it can’t be echo’ed due to it’s variable type?