What I did was copy everything out of my node.tpl.php file and removed and replaced
<?php print $content?>
with my current mode-product.tpl.php content
Then at the top in
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
I added
<?php print $node->nid; ?>To make it look like this
<div class="node <?php print $node->nid; ?><?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">

Joined: 01/11/2008