how to change currency display format ?

Discussion in 'Templates customization' started by bisnisukm, Apr 15, 2010.

  1. bisnisukm

    bisnisukm New Member

    Joined:
    Apr 10, 2010
    Messages:
    2
    How to change in signup.html (template), so I can display price for ex. 50.000,- instead of just 50000 ?
  2. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    Edit product.inc.php find this function:
    Code:
        function _getTextPrice($number, $currency, $startWithUpperCase=false){
            if ($number == 0.0) return $startWithUpperCase ? "Free" : "free";
            return "$currency$number";
        }
    
    change it to

    Code:
        function _getTextPrice($number, $currency, $startWithUpperCase=false){
            if ($number == 0.0) return $startWithUpperCase ? "Free" : "free";
            return "$currency".number_format($number,0,",",".");
        }
    
    
  3. bisnisukm

    bisnisukm New Member

    Joined:
    Apr 10, 2010
    Messages:
    2
    it's work

    It's works like what I want
    Thank you

Share This Page