Support Change the unit of payment amount

soltancs

Registered
Hello
I want to display the currency of my country correctly.
How can I display the unit of Iran without 0.00.
I also want the forum to have more than 10 million units
currency-amount-cost.png
 
Solution
You have to expand/edit it XF\Data\Currency
class and extend/modify the getCurrencyData method.
PHP:
'USD' => ['code' => 'USD', 'symbol' => '$',    'precision' => 2, 'phrase' => 'currency.usd', 'fa' => 'fa-dollar-sign'],
Would become:
PHP:
'USD' => ['code' => 'USD', 'symbol' => '$',    'precision' => 0, 'phrase' => 'currency.usd', 'fa' => 'fa-dollar-sign'],

XenForo

Administrative
You have to expand/edit it XF\Data\Currency
class and extend/modify the getCurrencyData method.
PHP:
'USD' => ['code' => 'USD', 'symbol' => '$',    'precision' => 2, 'phrase' => 'currency.usd', 'fa' => 'fa-dollar-sign'],
Would become:
PHP:
'USD' => ['code' => 'USD', 'symbol' => '$',    'precision' => 0, 'phrase' => 'currency.usd', 'fa' => 'fa-dollar-sign'],
 
Solution
  • Tags
    amount amount cos change the unit of payment amount cost currency iran currency support change the unit of payment amount unit cost
  • Back
    Top Bottom