2016-08-24 3 views

답변

0

템플릿 파일을 통해 수행해야합니다. 사용자 정의 코드를 작성해야합니다.

<?php 
    foreach ($this->getCurrencies() as $_code => $_name): 

    $current_currency_code = Mage::app()->getStore()->getCurrentCurrencyCode(); 
    if($current_currency_code == $_code) continue; 
    ?> 
    <li class=" sel-cur" data-toggle="tooltip" data-placement="bottom"> 
     <a href="<?php echo $this -> getSwitchCurrencyUrl($_code); ?>" > <img class="pull-right" alt="<?php echo $_code; ?>" src="<?php echo $this->getSkinUrl().'images/flags/img-'.$_code.'.jpg'?>"> </a> 
    </li> 
<?php endforeach; ?> 

또는

당신은

같은 확장 기능을 사용 할 수 있습니다 쉬운 플래그

관련 문제