最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

functions - Woocommerce checkout field

programmeradmin0浏览0评论

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/

发布评论

评论列表(0)

  1. 暂无评论