To change from distance display in miles to kilometers in xlResults.php.
Change this line:
$v = $v >=0 ? sprintf("%.1f", $v)." miles" : null;
To:
$v = $v >=0 ? sprintf("%.1f", $v / .062)." kilometers" : null;
Article is in the following categories:
KB » PHP Code Customization Tips
KB » PHP Code Customization Tips

How to change distance format from Miles to Kilometers
Email This Article