Hi,
The "product / edit" ACL are for only the edition.
We didn't add "product / show" ACLs because we though that it wasn't necessary and could be redundant.
But, even if there is no setting or ACL for that, you can force the display of some fields in the "productmarket / form" view.
Like it is already done for the product name
<?php if(hikamarket::acl('product/edit/name')) { ?>
<dt class="hikamarket_product_name"><label><?php echo JText::_('HIKA_NAME'); ?></label></dt>
<dd class="hikamarket_product_name"><input type="text" name="data[product][product_name]" value="<?php echo $this->escape(@$this->product->product_name); ?>"/></dd>
<?php } else { ?>
<dt class="hikamarket_product_name"><label><?php echo JText::_('HIKA_NAME'); ?></label></dt>
<dd class="hikamarket_product_name"><?php echo @$this->product->product_name; ?></dd>
<?php } ?>
So you can perform an override of the view and make some fields visible (un read only) if the vendor do not have edition access.
Regards,