如果在结账时使用了三个特定的优惠券代码之一,我试图在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');
您的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文件中。经过测试和工作。