目前在结帐页面和购物车页面后,人们应用优惠券代码,然后购物车显示优惠券名称和从原始产品价格减少多少钱。
例如产品价格为100,优惠券折扣为20%,然后显示优惠券名称,-20。
但是我不想在那里显示-20,而是我需要在那里显示自定义字符串20%的折扣。不是金额,而是一些自定义字符串..
我怎么能这样做? 。当我搜索我可以找到那个主题/ woocommerce / cart / cart.php那里它正在使用函数<?php do_action( 'woocommerce_cart_collaterals' ); ?>
。因此,没有选项可以编辑减少的金额。
请大家帮忙,请注意此字符串需要显示在结帐,购物车,订购电子邮件等中。
答案 0 :(得分:1)
您需要使用woocommerce_cart_totals_coupon_html
过滤器挂钩,如下例所示:
add_filter( 'woocommerce_cart_totals_coupon_html', 'custom_cart_totals_coupon_html', 30, 3 );
function custom_cart_totals_coupon_html( $coupon_html, $coupon, $discount_amount_html ) {
// For percent coupon types only
if( 'percent' == $coupon->get_discount_type() ){
$percent = $coupon->get_amount(); // Get the coupon percentage number
$discount_amount_html = '<span>' . $percent . ' % </span>'; // Formatting percentage
// Replacing coupon discount, by custom percentage
$coupon_html = $discount_amount_html . ' <a href="' . esc_url( add_query_arg( 'remove_coupon', urlencode( $coupon->get_code() ), defined( 'WOOCOMMERCE_CHECKOUT' ) ? wc_get_checkout_url() : wc_get_cart_url() ) ) . '" class="woocommerce-remove-coupon" data-coupon="' . esc_attr( $coupon->get_code() ) . '">' . __( '[Remove]', 'woocommerce' ) . '</a>';
}
return $coupon_html;
}
代码进入活动子主题(或活动主题)的function.php文件。经过测试和工作。
它将以购物车和结帐页面上的优惠券百分比替换折扣金额...