Files
BiveEngine/playarea/templates/product/short_price.php
2025-12-24 19:19:01 +03:00

6 lines
232 B
PHP

<?php
$product_price = number_format($variables["price"], 2, ',', ' ');
if($variables["sale_percent"] > 0) echo number_format($variables["price"] * (1 - ($variables["sale_percent"] / 100)), 2, ',', ' ');
else echo $product_price;