I've put together a Drupal commerce site using a theme called Expressa. Will readily admit I'm not an expert with Drupal.
On my category (item-type) page I get just text - no sign of the image I uploaded when I added the product. Simply a list of products in that category.
When you click on one of the products you see the product's picture that I uploaded.
From what I can tell both pages use the same file to display the products - node-product-display-tpl.php.
To be a little more specific on the category page there's this:
<div class="row">
<div class="span5">
<div class="product-display-image">
</div>
</div>
</div>
On the product page this changes to
<div class="span5">
<div class="product-display-image">
<div class="commerce-product-field commerce-product-field-field-image field-field-image node-47- product-field-image">
<div class="field field-name-field-image field-type-image field-label-above">
<div class="field-label">Image: </div><div class="field-items">
<div class="field-item even"><img typeof="foaf:Image" src="http://edge.ppgdev.com/oo/sites/default/files/styles/large/public/ocrm.jpg?itok=JLlUNLG8" width="600" height="450" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
Any help restoring the picture(s) to the item type page appreciated. Got a feeling I've changed something inside Drupal. Mainly because both use the same file and the code calling in the image is there. So my guess is somewhere in the depths of Drupal I've deactivated product images on the item-type page. It's just I've spent 12 hours looking for this setting and found diddly squat so far.
Here's the theme maker's page looking like I want mine to look like:
http://refaktorthemes.com/expressa/item-type/bags
It seems very simple on paper but I'm struggling to find this particular setting.
Thanks in advance for any help.