gpt4 book ai didi

php - 在 WooCommerce 管理员订单项上显示 "product short description"

转载 作者:行者123 更新时间:2023-12-04 03:30:49 24 4
gpt4 key购买 nike

我想在管理中产品标题下方的“编辑订单”页面中显示“产品简短描述”。

enter image description here


我对 WooCommerce 比较陌生,根据我的发现,我认为我应该使用 woocommerce_before_order_itemmeta 操作 Hook

喜欢:

add_action( 'woocommerce_before_order_itemmeta', 'short_discription', 10, 2 );
function short_discription( ) {

}

任何关于如何进一步调整的帮助将不胜感激

最佳答案

您确实使用了正确的钩子(Hook),但您可以访问 3 传递的参数(相反的 2)。即:$item_id$item & $product

注意:因为可变产品只能有 1 个产品简短描述,所以所有产品变体都会有完全相同的描述。对于可变产品,您可以显示产品变体描述而不是产品简短描述

所以你得到:

function action_woocommerce_before_order_itemmeta( $item_id, $item, $product ) {
// Targeting line items type only
if ( $item->get_type() !== 'line_item' ) return;

// Variable
if ( $product->get_type() == 'variation' ) {
// Get the variable product description
$description = $product->get_description();
} else {
// Get product short desciption
$description = $product->get_short_description();
}

// Isset & NOT empty
if ( isset ( $description ) && ! empty( $description ) ) {
echo $description;
}
}
add_action( 'woocommerce_before_order_itemmeta', 'action_woocommerce_before_order_itemmeta', 10, 3 );

结果:

enter image description here

关于php - 在 WooCommerce 管理员订单项上显示 "product short description",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66849397/

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