Before I ask I want everyone to know that I have read this node thoroughly

http://drupal.org/node/47308

I have made a custom field in the profile: profile_color

I am using content template to insert some code. I have successfully instered

User ID, Node ID

and then aslo mail and fullname

however I cannot get it to pull up the profile_color

<?php
$user->uid = $node->uid;
profile_load_profile($user->uid);

print $user->profile_color;
?>

I have tried many variations of this also according to the node above.

Thanks

Comments

pinkqui’s picture

<?php
$user->uid = $node->uid;
profile_load_profile($user);

print $user->profile_color;
?>