WordPress教程

WooCommerce根据物流/快递方式隐藏账单/收货地址字段

阿里云

WooCommerce 根据用户选择的物流/快递方式隐藏账单/收货地址字段,在 WooCommerce 的结账流程设计中,系统默认认为用户在网站上购买商品需要发货到用户指定的地址。这也是标准的电商流程。当然、也有一些特殊情况,比如虚拟商品不需要发货的、用户选择发送到指定自提点的,这些情况都不需要用户输入所有的账单/收货地址字段。

用户选择物流方式后,在前端显示/隐藏某些字段。下面的代码示例中,当用户选择了本地取货的支付方式后,隐藏了公司、国家、地址行 1、地址行 2、城市、州/省份、邮编这些不必填写的收货地址字段。然后从平台给出的一些自提点中选择一个作为收货地址,系统把商品配送到这个自提点后,会通知用户去提货。

也想出现在这里?联系我们
创客主机
  1. jQuery(document).ready(function($) {
  2.  
  3.     /**
  4.      * 用户选择了某个支付方式后,显示或隐藏某些字段
  5.      */
  6.     var wclp_show_address_button = function() {
  7.         var selected_method = $('input[name^="shipping_method"][type="radio"]:checked').val(),
  8.             address_fields = $(
  9.       '#billing_company_field,#billing_country_field,#billing_address_1_field,#billing_address_2_field, #billing_city_field, #billing_state_field, #billing_postcode_field');
  10.  
  11.         if (selected_method === 'wclp_shipping_method') {
  12.             address_fields.hide();
  13.         } else {
  14.             address_fields.show();
  15.         }
  16.  
  17.     };
  18.  
  19.     /**
  20.      * 用户修改支付方式后
  21.      */
  22.     $(document).on('change', 'input[name^="shipping_method"][type="radio"]', function(event) {
  23.         wclp_show_address_button();
  24.     });
  25.  
  26.     /**
  27.      * 更新购物车后
  28.      */
  29.     $(document.body).on('updated_checkout', function(data) {
  30.         wclp_show_address_button();
  31.     });
  32.  
  33.     wclp_show_address_button();
  34. });

WooCommerce 的收件地址字段中、有些是必填的,比如省份、城市、邮编、地址这些信息。第一步的代码中,我们只是从前端隐藏了这些字段,如果后端不做处理,用户选择自提点、点击提交后,系统会提示某些必填字段没有填写(因为这些字段是隐藏的,用户根本找不到填写的字段)。

这个时候,我们需要从后端把这些必填字段移除,以避免出现上面的错误。下面的代码中,我们移除了地址行 1、州/省份、城市、邮编这些必填字段。

  1. add_filter('woocommerce_checkout_fields', function ($fields)
  2. {
  3.     $chosen_methods  = WC()->session->get('chosen_shipping_methods');
  4.     $chosen_shipping = $chosen_methods[ 0 ];
  5.  
  6.     if ($chosen_shipping == 'wclp_shipping_method') {
  7.         unset($fields[ 'billing' ][ 'billing_address_1' ]);
  8.         unset($fields[ 'billing' ][ 'billing_state' ]);
  9.         unset($fields[ 'billing' ][ 'billing_city' ]);
  10.         unset($fields[ 'billing' ][ 'billing_postcode' ]);
  11.     }
  12.  
  13.     return $fields;
  14. }, 990);

除了根据用户选择的物流方式,我们还可以根据用户购买的商品,选择性的移除某些字段,比如用户只购买了虚拟商品时,移除不必要的结账字段。

WooCommerce 根据物流/快递方式隐藏账单/收货地址字段

已有 511 人购买
查看演示升级 VIP立刻购买

收藏
(0)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!