gpt4 book ai didi

wordpress - 如何在 WooCommerce 中创建具有相同 SKU 的多个简单产品?

转载 作者:行者123 更新时间:2023-12-04 13:46:34 25 4
gpt4 key购买 nike

我想在 WooCommerce 中创建多个具有相同 SKU 的简单产品。
我在管理设置中搜索,但找不到任何启用此功能的设置。是否有任何钩子(Hook),所以我可以禁用此功能。

最佳答案

If you want to completely disable the SKU feature then you have to use wc_product_sku_enabled filter. It will remove the SKU field from both backend and frontend.


add_filter( 'wc_product_sku_enabled', '__return_false' );

If you want to keep the SKU feature but need to disable unique SKU check then you have to use wc_product_has_unique_sku filter. It will keep the SKU field in both backend and frontend, but will allow you to add multiple duplicate SKU.


add_filter( 'wc_product_has_unique_sku', '__return_false' ); 

代码进入事件子主题(或主题)的 function.php 文件中。或者也可以在任何插件 php 文件中。
希望这可以帮助!

关于wordpress - 如何在 WooCommerce 中创建具有相同 SKU 的多个简单产品?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41584567/

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