if(isset($this->row->product_msrp) && @$this->row->product_msrp > 0.0 && hikaInput::get()->getCmd('layout') == 'show' && $this->params->get('from_module','') == '') {
?>
<span class="hikashop_product_msrp_price hikashop_product_price_full">
<span class="hikashop_product_msrp_price_title"><?php
echo JText::_('PRODUCT_MSRP_BEFORE');
?></span>
<span class="hikashop_product_price"><?php
$mainCurr = $this->currencyHelper->mainCurrency();
$app = JFactory::getApplication();
$currCurrency = $app->getUserState( HIKASHOP_COMPONENT.'.currency_id', $mainCurr );
$msrpCurrencied = $this->currencyHelper->convertUniquePrice($this->row->product_msrp,$mainCurr,$currCurrency);
if($msrpCurrencied == $this->row->product_msrp)
echo $this->currencyHelper->format($this->row->product_msrp,$mainCurr);
else {
echo $this->currencyHelper->format($msrpCurrencied,$currCurrency);
if($this->params->get('show_original_price'))
echo ' ('.$this->currencyHelper->format($this->row->product_msrp,$mainCurr).')';
}
?></span>
</span>
<?php
}