gpt4 book ai didi

php - 在 WooCommerce 中获取和使用产品类型

转载 作者:行者123 更新时间:2023-12-05 08:26:40 24 4
gpt4 key购买 nike

我正在做一个项目,我一直坚持将 Woocommerce 产品类型设置为“简单”、“可变”、“分组”或“外部”...

我想要实现的目标:
在感谢页面上,显示“谢谢。您的订单已收到。”。
如果产品是“简单”的,我想在那里显示一个特定的文本,而另一个文本是产品是可变的、分组的或外部的,比如:

if (product->get_type() == 'simple') {// (for simple product)
//show a text
}else {// (for variable, grouped and external product)
//show another text
}

我已经能够使用这个:

function custome_tank_you_text($order_id) {
$order = new WC_Order( $order_id );
$items = $order->get_items();

foreach ( $items as $item ) {
$product = wc_get_product( $item['product_id'] );

$product->get_type();
}

if( $product == 'simple'){ ?>
<p class="woocommerce-notice woocommerce-notice--success woocommerce-thankyou-order-received"><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you for topping up your wallet. It has been updated!', 'woocommerce' ), $order ); ?></p>
<?php
} else {?>
<p class="woocommerce-notice woocommerce-notice--success woocommerce-thankyou-order-received"><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you. Your order has been received!', 'woocommerce' ), $order ); ?></p>
<?php
}
}
add_shortcode('thank-u-msg', 'custome_tank_you_text');

但这只会回应 Else 语句。

我做错了什么吗?

最佳答案

更新:

对于产品类型,您可以使用以下WC_Product methods :

  • 要获取产品类型,您将使用 get_type() 方法
  • 检查 IF 语句中的产品类型,您将使用is_type() 方法

请参阅本答案末尾如何获取 WC_Product 对象实例。

自 WooCommerce 3 以来,您的代码有点过时并且存在一些错误……还要记住,一个订单可以有很多项目,因此需要打破循环(保留第一个项目)。您可以通过这种方式直接使用专用过滤器 Hook woocommerce_thankyou_order_received_text:

add_filter( 'woocommerce_thankyou_order_received_text', 'custom_thankyou_order_received_text', 20, 2 );
function custom_thankyou_order_received_text( $thankyou_text, $order ){
// Loop through order items
foreach ( $order->get_items() as $item ) {
// Get an instance of the WC_Product Object from the WC_Order_Item_Product
$product = $item->get_product();

if( $product->is_type('simple') ){
$thankyou_text = __( 'Thank you for topping up your wallet. It has been updated!', 'woocommerce' );
} else {
$thankyou_text = __( 'Thank you. Your order has been received!', 'woocommerce' );
}
break; // We stop the loop and keep the first item
}
return $thankyou_text;
}

代码进入事件子主题(或事件主题)的 function.php 文件。测试和工作。

$order

相关:Get Order items and WC_Order_Item_Product in WooCommerce 3


添加 - 如何获取 WC_Product 对象 (使用 is_type() get_type() < em>方法)

Sometimes you can't get the product type globally… as it depends on the WC_Product object.

1) From a dynamic product id variable (when you doesn't have the $product object:

$product = wc_get_product( $product_id );

or

$product = wc_get_product( get_the_id() );

2) From $product global variable on single product pages (and on product archive pages inside the loop):

global $product;

// Check that WC_Product instance $product variable is defined and accessible
if ( ! is_a( $product, 'WC_Product' ) ) {
$product = wc_get_product( get_the_id() );

3) In cart items:

// Loop throught cart items
foreach( WC()->cart->get_cart() as $cart_item ){
$product = $cart_item['data'];
}

3) In order items:

// Loop through order items
foreach ( $order->get_items() as $item ) {
$product = $item->get_product();
}

关于php - 在 WooCommerce 中获取和使用产品类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52254794/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com