1
Answers
Display Product Creator in node.tpl.php file.
You can use the following in a node.tpl.php file to customise the display of product display pages:
<?php
print render($content['product:field_primary_image']);
?>
<?php
print render($content['product:commerce_price']);
?>
What code do you need to use display the creator of the product?
(I know how to display the author of product display node, but not the creator of the actual product).