I just installed Views module for Drupal 7 and am trying to find out how to customize it.
So far, I have done the following things.
You should to use fields templates not 'Display', 'Style', or 'Row'.
Or you can use both fields in 'Row' template. Ex:
print $fields['you_field_value']->raw;
Name of 'you_field_value' show as part of link in fields list of view display.
print $fields['your_field_value']->raw;
did not work for me, however the following did in my case.
$row->field_YOUR_FIELD[0]['rendered']['#markup'];
Or to get the value of field:
print $fields['field_pretitle_front']->content;