Hi .. I just figured it out:
In my theme’s functions.php:
function product_editor_content ( $content, $post) {
if ($post->post_type==’wpcproduct’)
$content=’Template for products:’;
return $content;
}
add_filter(‘default_content’, ‘product_editor_content’,10, 2);