Any idea how i can get "12500000" displayed as "1,250,000" ?

I know no php and have been using 'scraps' of code to fix this module to my needs. this is the only thing i can't figure out ;)

Comments

asak’s picture

Status: Active » Closed (fixed)

Answering myself once again:

Use the following Display Format:

$display = number_format($node_field_item['value'], 0, '', ',');

If you'd like to make this into a currency, use:

$display = number_format($node_field_item['value'], 0, '', ',') .' $';

ssoulless’s picture

Version: 5.x-1.2 » 7.x-1.x-dev
Component: Miscellaneous » Code
Issue summary: View changes

Since this is still useful for other people I move this to 7.x

Thanks. =)