如果使用特定优惠券,则在WooCommerce Order Received页面上显示自定义文本

问题描述 投票:1回答:1

如果在结账时使用了三个特定的优惠券代码之一,我试图在Woocommerce订单收到页面上显示自定义的感谢信息。

我们的Woocommerce版本是2.6.11。

我尝试了以下代码的一些变体,但无法使其工作,我做错了什么?

//show custom coupon thankyou
function coupon_thankyou($order_id) {
    $coupon_id = '1635';
    $order = wc_get_order($order_id);
    foreach( $order->get_items('coupon') as $coupon_item ){
        if( $coupon_item->get_code() = $coupon_id ){
            echo '<p>This is an custom thank you.</p>';
        }
    }
}
add_action('woocommerce_thankyou','coupon_thankyou');
php wordpress woocommerce orders coupon
1个回答
0
投票

您的IF语句中存在错误,其中=必须替换为=====。还有优惠券,您需要使用优惠券代码slug(但不是帖子ID)。

要在订单收到页面上显示消息,请更好地使用woocommerce_thankyou_order_received_text过滤器挂钩,这种方式(适用于Woocommerce 3+):

// On "Order received" page (add a message)
add_filter( 'woocommerce_thankyou_order_received_text', 'thankyou_applied_coupon_message', 10, 2 );
function thankyou_applied_coupon_message( $text, $order ) {
    $coupon_code = '1635'; // coupon code name

    foreach( $order->get_items('coupon') as $coupon ){
        if( $coupon->get_code() === $coupon_code ){
            $text .= '<p>'.__("This is an custom thank you.").'</p>';
        }
    }
    return $text;
}

代码位于活动子主题(或活动主题)的function.php文件中。它应该现在有效。


更新

对于3.0之前的Woocommerce版本,您应该使用以下代码:

// On "Order received" page (add a message)
add_action( 'woocommerce_thankyou', 'thankyou_applied_coupon_message', 10, 1 );
function thankyou_applied_coupon_message( $order_id ) {
    $coupon_code = '1635'; // coupon code name

    $order = wc_get_order( $order_id );

    foreach( $order->get_items('coupon') as $coupon ){
        if( $coupon['name'] === $coupon_code ){
            echo '<p>'.__("This is an custom thank you.").'</p>';
        }
    }
}

代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。

© www.soinside.com 2019 - 2024. All rights reserved.