我见过很多问题,但似乎没有一个问题对此有答案。我迫切需要这种帮助。我托管在 Magentogo 上,因此无法访问核心文件,但是在 jquery 的帮助下,我想从我的商店中隐藏 .00。例如,我的代码看起来像这样。卢比项目的价格。也是在 HTML 中无法粘贴为
<div class="price-block"
<p> The price of this item is
<span class="price" id="oldprice">
<span class="WebRupee"> Rs. </span>3,795.00 </span></p>
</span>
</div>
<script>
$('#price-block').html($('#price-block').html().replace(".00",""));
</script>
</body>
</html>