2015-02-11 95 views
1

我一直在尋找這方面的一些建議一段時間。有沒有辦法在Magento中切換稅務顯示(含稅,稅前)。我的客戶想要兩個單選按鈕,一個顯示稅款,一個不顯示。Magento稅收切換

有一對夫婦的插件,但他們似乎並沒有與"price-excluding-tax"類或"price-including-tax"<span>元素進行測試過去版本1.7

回答

0

Magento的默認包裝的價格。您可以使用JavaScript來顯示或隱藏它們。例如,如果你使用jQuery

if(exTax radio button is clicked){ 
    jQuery('.price-including-tax').hide(); 
    jQuery('.price-excluding-tax').show(); 
}else{ 
    jQuery('.price-including-tax').show(); 
    jQuery('.price-excluding-tax').hide(); 
} 

同時確保Magento的配置,顯示在前端包括和不含稅價格。