使 WooCommerce 结帐运输字段可见并删除 "Ship to different address?" 复选框
Make WooCommerce checkout shipping fields visible and remove "Ship to different address?" checkbox
我想知道是否有办法删除复选框“运送到不同的地址?”在 woocommerce 结帐页面中,但保持运输字段可见。我试过:
add_filter( 'woocommerce_cart_needs_shipping_address', '__return_false');
它有效,但是它不会在“运输字段选项卡”中显示任何字段。
如果您希望送货地址字段始终可见,您可以使用 CSS.
尝试将这些行添加到您的活动主题的样式表:
/* hides the checkbox */
#ship-to-different-address-checkbox {
display:none;
}
/* disable touch event or mouse click */
#ship-to-different-address label {
pointer-events: none;
}
如果需要,您可以使用任何翻译插件翻译文本 Ship to a different address?。例如 Polylang 或 Loco Translate.
管理->Woocommerce->设置->运输->运输选项
我想知道是否有办法删除复选框“运送到不同的地址?”在 woocommerce 结帐页面中,但保持运输字段可见。我试过:
add_filter( 'woocommerce_cart_needs_shipping_address', '__return_false');
它有效,但是它不会在“运输字段选项卡”中显示任何字段。
如果您希望送货地址字段始终可见,您可以使用 CSS.
尝试将这些行添加到您的活动主题的样式表:
/* hides the checkbox */
#ship-to-different-address-checkbox {
display:none;
}
/* disable touch event or mouse click */
#ship-to-different-address label {
pointer-events: none;
}
如果需要,您可以使用任何翻译插件翻译文本 Ship to a different address?。例如 Polylang 或 Loco Translate.
管理->Woocommerce->设置->运输->运输选项