WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
I'm need to remove decimal separator (".00") in bakery. If my price for example $200 it must be displayed "$200" not "$200.00" . How can i do this?
$price = number_format(stripslashes($item['price']), 2, $setting_dec_point, $setting_thousands_sep);
It is also possible using jQuery to change the displayed value: <td class="mod_bakery_trinidad fundadores_cart_td_price_f">155.00</td> $("td.mod_bakery_cart_ td_price_f').text...