magento 为支付方式添加一个 最大金额和最小金额的限制

在相应支付方式的etc/system.xml文件里添加如下代码即可(不填数字即不限制)
<min_order_total>
    <label>Minimum Order Total</label>
    <frontend_type>text</frontend_type>
    <sort_order>71</sort_order>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
</min_order_total>
<max_order_total>
    <label>Maximum Order Total</label>
    <frontend_type>text</frontend_type>
    <sort_order>72</sort_order>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
</max_order_total>

猜你喜欢

转载自blog.csdn.net/benben0503/article/details/39226803