我正在使用Magento 1.9并且它具有此代码(在php中,文件price.phtml
)以在类别和产品视图页面中回显价格:
<?php echo $_coreHelper->currency($_finalPriceInclTax, true, false) ?>
//echo 199,00€
现在我需要显示第一个数字(逗号199,
之前)大于其余数字(00€
)
也许我需要在逗号和其他部分之前使用单独的数字类。
有什么想法吗?
答案 0 :(得分:0)
您可以使用以下代码
<span class='large'><?php echo str_replace(",",",</span><span class='small'>",$_coreHelper->currency($_finalPriceInclTax, true, false)); ?></span>
CSS PART
.large { font-size : 16px; }
.small { font-size : 12px; }