显示优惠券描述 woocommerce
Display coupon description woocommerce
我正在尝试在购物车页面中应用优惠券 (10%) 后显示优惠券说明。
为了显示总计,我正在使用 $woocommerce->cart->cart_contents_total
如何显示优惠券描述?
此插件创建短代码以显示优惠券信息。其中之一是 [coupon_description]。
https://wordpress.org/plugins/woocommerce-coupon-shortcodes/
因为你没有提到你想在哪里有优惠券描述,我已经在 Cart Total.
之前打印了它
如果你想把它放在不同的地方,你可以修改action
。您可以从 here.
中找到它
代码:
add_action('woocommerce_before_cart_totals', 'apply_product_on_coupon');
function apply_product_on_coupon() {
global $woocommerce;
if ( ! empty( $woocommerce->cart->applied_coupons ) ) {
$my_coupon = $woocommerce->cart->get_coupons() ;
foreach($my_coupon as $coupon){
if ( $post = get_post( $coupon->id ) ) {
if ( !empty( $post->post_excerpt ) ) {
echo "<span class='coupon-name'><b>".$coupon->code."</b></span>";
echo "<p class='coupon-description'>".$post->post_excerpt."</p>";
}
}
}
}
}
如果您有任何疑问,请告诉我。
我正在尝试在购物车页面中应用优惠券 (10%) 后显示优惠券说明。
为了显示总计,我正在使用 $woocommerce->cart->cart_contents_total
如何显示优惠券描述?
此插件创建短代码以显示优惠券信息。其中之一是 [coupon_description]。
https://wordpress.org/plugins/woocommerce-coupon-shortcodes/
因为你没有提到你想在哪里有优惠券描述,我已经在 Cart Total.
之前打印了它如果你想把它放在不同的地方,你可以修改action
。您可以从 here.
代码:
add_action('woocommerce_before_cart_totals', 'apply_product_on_coupon');
function apply_product_on_coupon() {
global $woocommerce;
if ( ! empty( $woocommerce->cart->applied_coupons ) ) {
$my_coupon = $woocommerce->cart->get_coupons() ;
foreach($my_coupon as $coupon){
if ( $post = get_post( $coupon->id ) ) {
if ( !empty( $post->post_excerpt ) ) {
echo "<span class='coupon-name'><b>".$coupon->code."</b></span>";
echo "<p class='coupon-description'>".$post->post_excerpt."</p>";
}
}
}
}
}
如果您有任何疑问,请告诉我。