gpt4 book ai didi

php - 将行添加到 WooCommerce 3.6 中的单个产品附加信息表

转载 作者:行者123 更新时间:2023-12-02 03:12:45 27 4
gpt4 key购买 nike

我正在尝试向单一产品附加信息表中添加一行。

Screenshot

实际上有什么钩子(Hook)或过滤器可以做到这一点吗?我已经搜索了钩子(Hook),但找不到解决方案。

感谢任何帮助。

最佳答案

从 WooCommerce 3.6 版 开始,您可以通过这种简单的方式使用 woocommerce_display_product_attributes 过滤器 Hook ,在“附加信息”表中添加自定义标签/值对 (选项卡):

add_filter( 'woocommerce_display_product_attributes', 'custom_product_additional_information', 10, 2 );
function custom_product_additional_information( $product_attributes, $product ) {
// First row
$product_attributes[ 'attribute_' . 'custom-one' ] = array(
'label' => __('Label One'),
'value' => __('Value 1'),
);

// Second row
$product_attributes[ 'attribute_' . 'custom-two' ] = array(
'label' => __('Label Two'),
'value' => __('Value 2'),
);

return $product_attributes;
}

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

enter image description here

关于php - 将行添加到 WooCommerce 3.6 中的单个产品附加信息表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57140225/

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