gpt4 book ai didi

php - 从显示的 Woocommerce 负费用中删除减号

转载 作者:行者123 更新时间:2023-12-04 15:09:26 25 4
gpt4 key购买 nike

我正在开发一个预订系统,其中客户只想收取 50 美元的押金并单独协商剩余金额。为了实现这一点,我使用以下代码将总价更新为 50 美元并显示剩余价格。

function prefix_add_discount_line( $cart ) {
$deposit = 50;
$remaining = $cart->subtotal - 50;
$cart->add_fee( __( 'Amount Remaining', 'remaining' ) , -$remaining);
}
add_action( 'woocommerce_cart_calculate_fees', 'prefix_add_discount_line' );

在订单电子邮件中,剩余金额以减号 (-) 符号显示。请让我知道如何删除 woocommerce 订单电子邮件中的减号

enter image description here

最佳答案

要使所有负费用金额在 WooCommerce 订单总计行中显示为正金额,请使用以下命令:

add_filter( 'woocommerce_get_order_item_totals', 'custom_order_total_line_html', 10, 3 );
function custom_order_total_line_html( $total_rows, $order, $tax_display ){
// Loop through WooCommerce orders total rows
foreach ( $total_rows as $key_row => $row_values ) {
// Target only "fee" rows
if ( strpos($key_row, 'fee_') !== false ) {
$total_rows[$key_row]['value'] = str_replace('-', '', $row_values['value']);
}
}
return $total_rows;
}

现在只针对 WooCommerce 电子邮件通知,使用这个:

add_filter( 'woocommerce_get_order_item_totals', 'custom_order_total_line_html', 10, 3 );
function custom_order_total_line_html( $total_rows, $order, $tax_display ){
// Only on emails
if ( ! is_wc_endpoint_url() ) {
// Loop through WooCommerce orders total rows
foreach ( $total_rows as $key_row => $row_values ) {
// Target only "fee" rows
if ( strpos($key_row, 'fee_') !== false ) {
$total_rows[$key_row]['value'] = str_replace('-', '', $row_values['value']);
}
}
}
return $total_rows;
}

代码进入事件子主题(或事件主题)的 functions.php 文件。经过测试并有效。

关于php - 从显示的 Woocommerce 负费用中删除减号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65459379/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com