有两种选择
您可以使用自定义代码来完成对于发货删除表单感谢页面,您需要覆盖模板。
这都是基于thankyou.php woocommerce的。您需要删除不希望显示的代码行,并将其上载到以下目录
wp-content/themes/your_child_theme/woocommerce/checkout/
要从电子邮件通知中删除发货总额行,请使用以下筛选器。
add_filter( \'woocommerce_get_order_item_totals\', \'filter__customize_email_order_line_totals\', 1000, 3 );
function filter__customize_email_order_line_totals( $total_rows, $order, $tax_display ){
// Only on emails notifications
if( ! is_wc_endpoint_url() || ! is_admin() ) {
// Remove shipping line from totals rows
unset($total_rows[\'shipping\']);
}
return $total_rows;
}
请在中添加代码
function.php 活动主题的文件。
只需从WooCommerce更改设置即可;设置->;概述装运地点,请选择禁用装运和装运计算。在这里,我分享了屏幕截图供您参考: