I'm trying to get a specific field number in my "views-view-fields--news.tpl.php". Right now it's like this :
<?php foreach ($fields as $id => $field): ?>
<?php print $field->content; ?>
<?php endforeach; ?>
I've tried to do something like this :
<?php print $fields[0]->content; ?>
But it doesn't seem to works and Google doesn't care about my problem.
Can you help me figure this?