在某些国家/地区没有 Postcode / ZIP(如爱尔兰!)。我们如何使 Postcode / ZIP 字段不需要,或者我们如何完全删除它?答案很简单。
1. 安装免费的 WooCommerce Poor Guys 瑞士刀插件
只需去官方 WordPress Plugin 目录下载就可以了。
安装它
插件现已从 WP 存储库中删除!这是一个更好的选择。
PHP 代码片段:删除 Postcode / ZIP 字段 @WooCommerce Checkout
/** * @snippet Remove the Postcode Field on the WooCommerce Checkout * @how-to Watch tutorial @ https://businessbloomer.com/?p=19055 * @sourcecode https://businessbloomer.com/?p=461 * @author Rodolfo Melogli * @testedwith WooCommerce 2.5.5 */ add_filter( 'woocommerce_checkout_fields' , 'bbloomer_remove_billing_postcode_checkout' ); function bbloomer_remove_billing_postcode_checkout( $fields ) { unset($fields['billing']['billing_postcode']); return $fields; }
官方文件
https://docs.woothemes.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/
可以在哪里添加此代码?
您可以将 PHP 代码片段放置在主题或子主题的 functions.php 文件的底部(如果是 CSS 代码,请添加到主题的 style.css 文件底部),修改之前建议先备份原始文件,若出现错误请先删除此代码。
这段代码是否正常可用?
或者是您有更好的解决方案想要分享?请到薇晓朵 WooCommerce 中文论坛留言告知,我们希望可以帮到更多国内的 WooCommerce 用户也希望您的参与。
需要关于 WooCommerce 的帮助?
请观看我们提供的免费视频教程或到薇晓朵 WooCommerce 中文论坛提问,会有专业技术团队提供相关帮助。