【发布时间】:2020-11-19 14:16:11
【问题描述】:
是否可以在购物车页面上隐藏 WooCommerce 可用的运输选项费用? 我只想在结帐页面上显示费用。
在下面的屏幕截图中,费用用红色下划线标出:
谢谢
【问题讨论】:
标签: php wordpress woocommerce cart shipping-method
是否可以在购物车页面上隐藏 WooCommerce 可用的运输选项费用? 我只想在结帐页面上显示费用。
在下面的屏幕截图中,费用用红色下划线标出:
谢谢
【问题讨论】:
标签: php wordpress woocommerce cart shipping-method
以下将仅从购物车中的运输选项中删除运输费用:
add_filter( 'woocommerce_cart_shipping_method_full_label', 'filter_cart_shipping_method_full_label', 10, 2 );
function filter_cart_shipping_method_full_label( $label, $method ) {
// On cart remove costs
if( is_cart() ) {
return $method->get_label();
}
return $label;
}
代码在您的活动子主题(或活动主题)的functions.php 文件中。经过测试并且可以工作。
相关:Change wc_cart_totals_shipping_method_label function in Woocommerce
【讨论】: