woocommerce 通过插件删除结账页面不必要的字段
通过wordpress的HOOK删除结账页面不必要的字段,效果如下:
add_filter( 'woocommerce_checkout_fields' , 'bbloomer_remove_billing_postcode_checkout' ); function bbloomer_remove_billing_postcode_checkout( $fields ) { unset($fields['billing']['billing_postcode']); return $fields; }
更多资料请参考:Customizing checkout fields using actions and filters
Pretty! This has been a really wonderful post.
Many thanks for providing this information.