我想在检查顺序部分中添加一个php代码段,以便在某些结帐表单具有特定值的情况下添加标签。 我的结帐表单值名称为billing_customer_type,代码段为:
add_action( 'woocommerce_review_order_before_order_total' , 'insert_reverse_charge' );
function insert_reverse_charge () {
global $woocommerce;
if ( $billing_customer_type == 'Company' ){
echo '<p><strong> non-taxable transaction - art. 41 D.L. 331/1993 </strong></p>';
}
}
例如,使用woocommerce_checkout_update_order_review钩子,我可以在$ post_data函数中接收该信息,在这种情况下,我可以浏览所有结帐表单字段值。如何检查woocommerce_review_order_before_order_total挂钩中的值?