Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
у тебя wa или ss ?
Есть очень простой вариант если у тебя одна валюта и нет всяких скидок...
В шаблонах product_brief и product_detailed, там, где написано {$product_info.PriceWithUnit} меняешь на
{if $product_info.PriceWithUnit > 100}{$product_info.Price} руб.{else}{$product_info.PriceWithUnit}{/if}
Тоесть должно получиться что-то типа этогоif ( $price > 100 )
return number_format ( ( float ) ceil ( $price / 10 ) * 10 );
else
return number_format ( ( float ) $price , 2 );
function _formatPrice ( $price )
{
if ( $price > 100 )
return number_format ( ( float ) ceil ( $price / 10 ) * 10 );
else
return number_format ( ( float ) $price , 2 );
}