It seems you are using the layout "listing table".
So you have to go to Display>Views and search for this view.
Then you have to find this code:
<th class="hikashop_product_price title" align="center">
<?php echo JText::_('PRICE'); ?>
</th>
And add
<th class="hikashop_product_molecularweight title" align="center">
<?php echo JText::_('MOLECULAR_WEIGHT'); ?>
</th>
(feel free to add the translation or replace <?php echo JText::_('MOLECULAR_WEIGHT'); ?> by whatever you want.
Finally find the code
<?php if($this->params->get('show_vote_product')){ ?>
<td class="hikashop_product_vote_row">
<?php
$this->row =& $row;
$this->setLayout('listing_vote');
echo $this->loadTemplate();
?>
</td>
<?php } ?>
and add just below:
<td>
<?php echo $this->row->molecularweight; ?>
</td>
You can obviously change the position of this code by adding it somewhere else after or before an existing <td>