在产品详细页面添加货币转换功能,注意不能从directory.phtml文件复制,在view.phtml文件47行添加以下代码

<?php if( Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())): ?><div class="currency-view-switcher"><ul><li style="margin-top:5px;"><a rel="nofollow"  class="c_currency"><img style="margin-top:6px;margin-right:8px" src="<?php echo $this->getSkinUrl('') ?>images/terry/<?php echo Mage::app()->getStore()->getCurrentCurrencyCode(); ?>.jpg" /><?php echo  Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol()."&nbsp;&nbsp;"; echo Mage::app()->getStore()->getCurrentCurrencyCode(); ?></a><div class="ddkk"><?php $i=0;  $a=Mage::app()->getStore();$b=$a['available_currency_codes'];foreach ($b as  $name=>$_code ): ?><?php 
if($_code==Mage::app()->getStore()->getCurrentCurrencyCode()){continue;}if($i==0){ $cClass='';}else{ $cClass='code_Class';}?><a rel="nofollow" class="rr<?php echo $_code ?> <?php echo $cClass;?>" href="<?php echo Mage::app()->getStore()->getSwitchCurrencyUrl($_code) ?>"><span><img style="margin-right: 10px;margin-top: 3px;" src="<?php echo $this->getSkinUrl('') ?>images/terry/<?php echo $_code; ?>.jpg" /><?php echo Mage::app()->getLocale()->currency($_code)->getSymbol()."&nbsp;&nbsp;";echo $_code; ?></span></a><br /><?php $i++; endforeach; ?></div></li></ul></div><?php endif; ?>

就可以实现货币转换,当然样式此处省略.