Magento税收切换

时间:2015-02-11 23:51:23

标签: magento magento-1.9 magento-1.9.1

我一直在寻找一些关于此的建议。有没有办法在Magento中切换税收显示(包税,税前)。我的客户想要两个单选按钮,一个显示税,一个不显示。

有几个插件,但它们似乎没有经过1.7版本的测试

1 个答案:

答案 0 :(得分:0)

默认情况下,Magento会将<span>元素中的价格与"price-excluding-tax""price-including-tax"进行对比。您可以使用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配置为在前端显示包含和排除税价。