我尝试将自定义函数添加到我的子主题functions.php文件中,其中复选框添加到结帐页面上的结算明细窗体底部。
此复选框询问客户是否想成为批发客户。
function customise_checkout_field_with_wholesale_option($checkout) {
echo '<div id="wholesale_checkbox_wrap">';
woocommerce_form_field('wholesale_checkbox', array(
'type' => 'checkbox',
'class' => array('input-checkbox'),
'label' => __('Would you like to apply for a wholesale account?'),
'placeholder' => __('wholesale'),
'required' => false,
'value' => true
), $checkout->get_value('wholesale_checkbox'));
echo '</div>';
}
这很好用,但是我在下一部分遇到了麻烦。
我希望客户用户角色保存为&#34; wholesale_customer&#34;而不是&#34;客户&#34;如果他们选中复选框。
add_action('woocommerce_after_checkout_billing_form', 'customise_checkout_field_with_wholesale_option');
function wholesale_customer( $order_id ) {
$order = new WC_Order( $order_id );
if (isset($_POST['wholesale_checkbox'])) {
if ($order->user_id > 0) {
$user = new WP_User($order->user_id);
// Remove role
$user->remove_role('customer');
// Add role
$user->add_role('wholesale_customer');
}
}
}
add_action( 'woocommerce_thankyou', 'wholesale_customer' );
上述功能的工作原理是将客户保存为&#34; wholesale_customer&#34;当我删除wholesale_checkbox if语句时。但是如果包含if语句,它总是将角色保存为&#34; customer&#34;。
我哪里错了?干杯
答案 0 :(得分:0)
这是正确的方法:
add_action( 'woocommerce_after_order_notes', 'custom_checkout_field_with_wholesale_option' );
function custom_checkout_field_with_wholesale_option( $checkout ) {
if( current_user_can( 'wholesale_customer' ) ) return; // exit if it is "wholesale customer"
echo '<div id="wholesale_checkbox_wrap">';
woocommerce_form_field('wholesale_checkbox', array(
'type' => 'checkbox',
'class' => array('input-checkbox'),
'label' => __('Would you like to apply for a wholesale account?'),
'placeholder' => __('wholesale'),
'required' => false,
'value' => true
), '');
echo '</div>';
}
// Conditionally change customer user role
add_action( 'woocommerce_checkout_update_order_meta', 'wholesale_option_update_user_meta' );
function wholesale_option_update_user_meta( $order_id ) {
if ( isset($_POST['wholesale_checkbox']) ) {
$user_id = get_post_meta( $order_id, '_customer_user', true ); // Get user ID
if( $user_id > 0 ){
$user = new WP_User($user_id);
$user->remove_role('customer');
$user->add_role('wholesale_customer');
}
}
}
代码进入活动子主题(或活动主题)的function.php文件。经过测试并正常工作。