neoseeyou Posted March 13, 2014 Share Posted March 13, 2014 Hello I need to hide decimal on prices only on a spécific module Due to graphics restriction, i need to display a price like this 5€ even if the really price is 5€65 I found this topice who help a lot http://www.prestashop.com/forums/topic/216045-solved-don%C2%B4t-display-product-price-decimals-if-decimals-is-000/?hl=%2Bdecimal&do=findComment&comment=1069750 But it hide only if the decimals are 00 , for exemple 5,00€ wil be transform into 5€. Any help would be really appreciate. Prestashop 1.4.11 Thanks Richard Link to comment Share on other sites More sharing options...
math_php Posted March 14, 2014 Share Posted March 14, 2014 Hello For only one module ? If so make a int cast in the code : The code might look like : tools::displayPrice($price) Change it to tools::displayPrice( (int)$price) Regards Link to comment Share on other sites More sharing options...
vekia Posted March 14, 2014 Share Posted March 14, 2014 how the $price variable will be rounded in this case? for example 5.90 will be rounded to 6 or to 5 ? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now