All I'm trying to do is display a CCK field on custom--node.tpl.php but it seems everything has changed in D7 and there are no documentation on this.
In Drupal 6 I did it like so:
<?php print $node->field_myfield[0]['view'] ?>
In Drupa 7 I did it like so:
<?php print render($content['field_myfield']); ?>
The problem is that this field is html formatted and I really don't want that. How can I print/echo/display a CCK field on custom--node.tpl.php with my own formatting provided by my own CSS or template file?