如果选中了贝宝选项,请删除表单验证Woocommerce

时间:2018-07-10 11:26:18

标签: php paypal woocommerce

我只是想知道,当用户选择贝宝作为付款方式时,如果我想从结帐表单中删除验证,将会是if语句吗?

我知道我可以使用

function not_required_fields( $f ) {


unset( $f['billing']['billing_first_name']['required'] ); // that's it
unset( $f['billing']['billing_phone']['required'] );

return $f;
}

但是我需要先知道if语句,例如

if(payment_method == PayPal)
{

above code here

}

唯一的是我不知道如何在woocommerce中编写它

0 个答案:

没有答案