Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save melissamcewen/1769f1fd749c28e5fb24c542c1de9653 to your computer and use it in GitHub Desktop.
Save melissamcewen/1769f1fd749c28e5fb24c542c1de9653 to your computer and use it in GitHub Desktop.
Debugging proper rendering of field from a Drupal 7 view
$view = &$vars['view'];
if($view->name == 'VIEW_MACHINE_NAME'){
$rows = $vars['rows'];
foreach ($rows as $id => $row) {
//dpm($view->result[$id]);
dpm($view->render_field('field_related_content_type', $id));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment