SORTED
http://drupal.org/node/467190#comment-2068324
Hi friends,
I've spent all day to find but can't find :(
How can I display CCK Field value with php in views_customfield? I tried the ones below, but no result
$node->field_homepage_linking[0]["view"]
$node->field_homepage_linking[0]["value"]
value_get('field_homepage_linking')
Appreciate helps!!
$node->field_homepage_linking[0]["view"]
this works in tpl.php files, not not working in View Module panel as below (screenshot)
<?php
if ($node->field_homepage_linking[0]["view"] == 1) { ?>
<a href="<?php print drupal_get_path_alias("node/" .$data->nid) ; ?>" title="<?php print $data->node_title; ?>">
<?php } ?>
<?php print $data->node_title; ?>
<?php if ($node->field_homepage_linking[0]["view"] == 1) { ?>
</a>
<?php } ?>