Hi,
If you want to hide the retail price, the best way would be to do it with some CSS code like :
.hikashop_product_msrp_price.hikashop_product_price_full {
display: none;
}
But you can also edit your
listing_price file of your
product view of your front-end template and replace all these lines (which are appearing 2 times):
if(isset($this->row->product_msrp) && @$this->row->product_msrp > 0.0 && JRequest::getCmd('layout') == 'show' && $this->params->get('from_module','') == '')
by
Hope this will help you.