admin管理员组

文章数量:1425058

is it possible to hide certain checkout filed in woo-commerce when user is logged in ? like i have a checkout field of Email address i do not want my user to see this when the user is logged in Your suggestion would be a great help.

is it possible to hide certain checkout filed in woo-commerce when user is logged in ? like i have a checkout field of Email address i do not want my user to see this when the user is logged in Your suggestion would be a great help.

Share Improve this question asked Jun 22, 2019 at 18:47 Ashiq DipuAshiq Dipu 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 1

Try :

add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );

function custom_override_checkout_fields( $fields ) {
   if(is_user_logged_in()){
      unset($fields['billing']['billing_email']);
   }
return $fields;
}

Source : https://docs.woocommerce/document/tutorial-customising-checkout-fields-using-actions-and-filters/

本文标签: functionsWoocommerce checkout field