2014-03-27 64 views

回答

1

使文件magento\app\code\core\Mage\Directory\controllers\CurrencyController.php

的變化而變化的函數

public function switchAction() 
     { 
      if ($curency = (string) $this->getRequest()->getParam('currency')) { 

      // add message 
      if($curency=="USD") 
       Mage::getSingleton('core/session')->addSuccess("your message"); 

       Mage::app()->getStore()->setCurrentCurrencyCode($curency); 
      } 
      $this->_redirectReferer(Mage::getBaseUrl()); 
     } 
+0

非常感謝。你救了我的生命:-) – user3469531

+0

你能幫我解決另一個問題嗎?我的網站會根據地理位置(通過IP地址)自動顯示產品價格。我需要停用美國客戶的美元價格,並將英國和美國客戶的英鎊作爲默認貨幣。 – user3469531