I have removed a line of the code Xavier so it looks like this:
<?php
if($this->params->get('show_price','-1')=='-1'){
$config =& hikashop_config();
$this->params->set('show_price',$config->get('show_price'));
}
if($this->params->get('show_price')){ ?>
<td class="hikashop_product_price_row">
<?php
$prodClass = hikashop_get('class.product');
$prodClass->getProducts($this->row->product_id);
echo $this->currencyHelper->format(@$prodClass->products[1]->prices[1]->price_value,4);
?>
</td>
That has enabled all the original prices to return.
The first product has the second price (price per week) displaying correctly however all the other products in the product list has the price per week (second price) displaying £0.
Please help!