Remove decimals

More
14 years 4 weeks ago #10725 by zaruc
Remove decimals was created by zaruc
Hi. Is it possible to remove the decimals from the defined amounts? Currently it looks like this:

Kr 1,000.00
Kr 2,500.00
Kr 5,000.00
Kr 10,000.00

I want:

Kr 1,000
Kr 2,500
Kr 5,000
Kr 10,000

Please Log in or Create an account to join the conversation.

More
14 years 4 weeks ago #10740 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: Remove decimals
Hi

You will need to modify the code alitle. Open the file components/com_jdonation/views/donation/tmpl/default.php, look at do a search and replace :
Code:
number_format($amount, 2)

and then replace it with :
Code:
number_format($amount)

After that, it should work fine !

Regards,

Tuan

Please Log in or Create an account to join the conversation.

More
14 years 4 weeks ago #10755 by zaruc
Replied by zaruc on topic Re: Remove decimals
Thanks, but I found ''number_format($amount, 2)'' mentioned six times in the file. Do I replace alle of them?

Please Log in or Create an account to join the conversation.

More
14 years 4 weeks ago #10756 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: Remove decimals
Yes, all of them !

Please Log in or Create an account to join the conversation.

Moderators: Dang Thuc DamDang Dam