2016-07-26 37 views
0

我正在使用購買的magento主題構建我的時尚商店。完成所有事情後,我注意到貨幣符號位置和模式是錯誤的。這些是我以前做過,Magento貨幣符號位置和圖案問題

1)殘疾人除德國外的所有商店的意見。 2)更名爲「麥迪遜島」店鋪名稱爲「蜂巢式」, 3)更名商店視圖「德」爲「斯里蘭卡」。

----------我目前的貨幣設置--------------

基礎貨幣:斯里蘭卡盧比 默認顯示貨幣:斯里蘭卡盧比

我的網站是:www.stylehive.lk

作爲一個例子商店顯示產品的價格作爲「5.568,00盧比」,但它應該是「盧比5,568.00」

Here is a example image.

另一個例子,價格顯示爲「520,00 Rs」,但它應該是「Rs 520.00」

我試圖改變lib/zend/locale/data中的xml文件....但它沒有工作。我更改了「de.xml」文件。可能是我改變了錯誤的文件。我不確定。

請幫我解決這個問題。

回答

0

轉到供應商\ Magento的\ zendframework1 \庫\ Zend的\區域\ DATA \ en.xml

查找

<currencyFormats numberSystem="latn"> 
     <currencyFormatLength> 
      <currencyFormat type="standard"> 
       <pattern>¤#,##0.00</pattern> 
      </currencyFormat> 
      <currencyFormat type="accounting"> 
       <pattern>¤#,##0.00;(¤#,##0.00)</pattern> 
      </currencyFormat> 
     </currencyFormatLength> 
     <unitPattern count="one">{0} {1}</unitPattern> 
     <unitPattern count="other">{0} {1}</unitPattern> 
    </currencyFormats> 

編輯標準模式一次。

運行命令: PHP斌/ Magento的緩存:清潔 PHP斌/ Magento的緩存:刷新 PHP斌/ Magento的設置:升級 PHP斌/ Magento的設置:迪:編譯

+0

我的Magento的版本是1.9.2 –

0

好最後我固定它。你修復後,

的lib/Zend公司/地點/數據/ language_file.xml

如果它不工作,嘗試

包括/ src目錄/數據/ de.xml

我改變包括/ SRC /數據/解。XML(因爲我改名德國商店視圖)

<currencyFormat type="standard"> 
    <pattern>#,##0.00 ¤</pattern> 
</currencyFormat> 

<currencyFormat type="standard"> 
    <pattern>¤ #,##0.00</pattern> 
</currencyFormat> 

---------------和---------- --------

<decimal>,</decimal> 
<group>.</group> 

<decimal>.</decimal> 
<group>,</group>