I have been trying to do display a custom field I created in the manage fields section of user accounts for nodes in addition to the profile page. The problem I am having with this code is that it will display the first field it finds and display that for every user, not the field for that particular user. And ideas? I believe it's finding the first value in the array and not the value for the particular user in the array.

Here is m setup so far: Added this to my template.php of my theme:

function mythemename_preprocess_node(&$vars) {

global $user;
  $user = user_load($user->uid); // Make sure the user object is fully loaded
  $team = field_get_items('user', $user, 'field_team');
  if ($team) {
    $vars['field_team'] = $team[0]['value'];
  }
}

Then, added this to my node.tpl.php in order to display it on nodes.

if (isset($field_team) && !empty($field_team)) :
  echo '$field_team.'</div>';
endif;

UPDATE: Found my own aswer here: http://drupal.org/node/1194506

Code used:

<?php
  $node_author = user_load($node->uid);
  print ($node_author->roles[3]);
  print ($node_author->field_biography['und'][0]['value']);
?>
link|improve this question

50% accept rate
Is your site multi-lingual? If not there's a much easier way to solve this, without the cost of the overhead introduced by field_get_items – Clive Dec 9 '11 at 15:47
Not sure I fully understood your intention, but the global $user; variable refers to the user doing the request (either a logged in known user, or the anonymous user), not to the node author. For that, you'd need to do a user_load($vars['node']->uid). – Henrik Opel Dec 9 '11 at 15:49
You should turn your Update findings into an answer to your own question, and later on accept it, so that the question does not stay open as 'unanswered'. – Henrik Opel Dec 9 '11 at 15:53
Henrik, thanks. New to the exchange here, I tried and it said I had to wait 8 hrs, so I updated the question for others to see. I guess I can come back in 8 hrs and answer. – kidA Dec 9 '11 at 15:59
@kidA: I see - sorry to ask for stuff you already tried. I did not know about the current timing constraints for 'self answering' :/ – Henrik Opel Dec 9 '11 at 20:27
feedback

1 Answer

My guess is because you're sending $user which is a stdClass to a function that asks for an entity which is a an entityclass. Just to debug, try running this function http://api.drupal.org/api/drupal/includes--common.inc/function/entity_load/7 and passing the result to field_get_items instead of $user.

Also, looking at the docs for field_get_items, the function looks really odd...

http://api.drupal.org/api/drupal/modules--field--field.module/function/field_get_items/7

link|improve this answer
What's an 'entityclass'? If you mean the class 'EntityClass' introduced in the contributed Entity API Module then no, this has absolutely nothing to do with the question. Running entity_load will actually call user_load internally based on the Controller provided for that type, so the object returned will be the same as that from user_load. Also there's nothing odd at all about field_get_items(), it's a 2 line function that determines the language code required and returns the related field value. It's pretty much the simplest function in the Drupal API :) – Clive Dec 9 '11 at 15:43
Thanks for the links, they help clarify a few things. I found a solution and updated my answer. – kidA Dec 9 '11 at 15:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.