WooCommerce Checkout 中的自定义总储蓄金额显示问题
Posted
技术标签:
【中文标题】WooCommerce Checkout 中的自定义总储蓄金额显示问题【英文标题】:Custom total savings amount display issue in WooCommerce Checkout 【发布时间】:2021-05-18 10:37:40 【问题描述】:我正在使用此代码 sn-p 在 WooCommerce 结帐时显示总订单节省:
add_action( 'woocommerce_review_order_after_order_total', 'show_total_discount_cart_checkout', 9999 );
function show_total_discount_cart_checkout()
$discount_total = 0;
foreach ( WC()->cart->get_cart() as $cart_item_key => $values )
$product = $values['data'];
if ( $product->is_on_sale() )
$regular_price = $product->get_regular_price();
$sale_price = $product->get_sale_price();
$discount = ( $regular_price - $sale_price ) * $values['quantity'];
$discount_total += $discount;
if ( $discount_total > 0 )
echo '<tr class="total-saved"><th>You Saved</th><td data-title="You Saved">' . wc_price( $discount_total + WC()->cart->get_discount_total() ) .'</td></tr>';
它应该显示客户节省的总金额(销售价格加上优惠券折扣)。截图:https://ibb.co/KXg2bDj
但是,如果购物车中没有打折的产品,则不会显示订单节省的总金额,即使订单上有优惠券代码也是如此。仅当购物车中有打折产品时,才会显示总订单节省。截图:https://ibb.co/PCQPGZx
我希望显示如果有优惠券代码应用于订单、如果购物车中有打折产品或,则显示订单节省的总金额如果两者都有。如果这 2 个都没有,则不需要显示总订单节省。
有人可以帮我实现吗?
【问题讨论】:
【参考方案1】:尝试以下方法,这将解决您的问题并处理显示税收设置:
add_action( 'woocommerce_review_order_after_order_total', 'show_total_discount_cart_checkout', 1000 );
function show_total_discount_cart_checkout()
$discount_total = 0; // Initializing
// Loop through cart items
foreach ( WC()->cart->get_cart() as $item )
$product = $item['data'];
if ( $product->is_on_sale() )
$regular_args = array( 'price' => $product->get_regular_price() );
if ( WC()->cart->display_prices_including_tax() )
$active_price = wc_get_price_including_tax( $product );
$regular_price = wc_get_price_including_tax( $product, $regular_args );
else
$active_price = wc_get_price_excluding_tax( $product );
$regular_price = wc_get_price_excluding_tax( $product, $regular_args );
$discount_total += ( $regular_price - $active_price ) * $item['quantity'];
if ( WC()->cart->display_prices_including_tax() )
$discount_total += WC()->cart->get_discount_tax();
$discount_total += WC()->cart->get_discount_total();
if ( $discount_total > 0 )
$text = __("You Saved", "woocommerce");
printf( '<tr class="total-saved"><th>%s</th><td data-title="%s">%s</td></tr>', $text, $text, wc_price($discount_total) );
代码进入活动子主题(或活动主题)的functions.php 文件中。经过测试并且可以工作。
【讨论】:
以上是关于WooCommerce Checkout 中的自定义总储蓄金额显示问题的主要内容,如果未能解决你的问题,请参考以下文章
如何删除 Woocommerce Checkout 页面中的“Hello Member”?
Woocommerce如何仅在用户未登录时设置default_checkout_billing_country
如何向 WooCommerce Checkout 页面中的自定义选择框添加验证并应用 select2 样式。
支付网关未触发 woocommerce_payment_complete 和 woocommerce_after_checkout_validation 挂钩