首页 > 解决方案 > 如果检查了贝宝选项,请删除表单验证 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 中编写它

标签: phppaypalwoocommerce

解决方案


推荐阅读