I am using the entityform module to capture some user submitted data http://drupal.org/project/entityform
I need to pull in some of the entity field values into one of my templates. I was trying to do this with some code that works for regular node fields..
<?php echo $node->field_title[$node->language]['value']; ?>
I've tried..
<?php echo $entity->field_title[$node->language]['value']; ?>
But that doesn't work. Anyone have any ideas on how I can accomplish this?
field_get_items documentation , field_view_value documentation