Hika 2.2.1, Joomla 3.1
Hi I've included the following at the end of product / listing_price to display a customized price / unit information.
<span font-weight="normal">
<?php
if(isset($this->row->product_weight) && bccomp($this->row->product_weight,0,3)){
$weight_price = $price->price_value_with_tax / $this->row->product_weight;
echo JText::_('PRICE_SEPARATOR').'(entspricht '.$this->currencyHelper->format($weight_price,$price->price_currency_id).' pro '.JText::_($this->row->product_weight_unit).')';
}
}
echo JText::_('PRICE_END');
}
?>
</span>
This works fine on the category and product display, but won't work correct in the cart display. I would like to suppress the display of this in the cart. What code would I need to do so?