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 badge1 Answer
Reset to default 1Try :
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/
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745372311a4624847.html
评论列表(0条)