需要在WooCommerce结帐页面上隐藏一种付款方式

时间:2017-02-09 10:37:46

标签: css wordpress

我在WooCommerce设置中禁用了信用卡付款/ Infusionsoft网关,但它仍然在Checkout上显示信用卡付款选项。现在,我想隐藏它,直到找到Plugin人员的永久解决方案。你能不能帮助我放在哪里?" display:none"隐藏页面上的第二个单选按钮。请看屏幕截图。 See Screenshot here

2 个答案:

答案 0 :(得分:0)

尝试将display:none;添加到自定义CSS中的payment_method_infusionsoft类。

最好的方法是使用" Chain"选择器如此:

li.wc_payment_method.payment_method_infusionsoft{
 display:none !important;
}

More about css display property

答案 1 :(得分:0)

function payment_gateway_disable_postpay( $available_gateways ) 
{    
    unset( $available_gateways['paytm'] ); //replace paytm with your payment gateway
    return $available_gateways;
}
add_filter( 'woocommerce_available_payment_gateways', 'payment_gateway_disable_postpay' );

希望这对你有用。