gpt4 book ai didi

php - WooCommerce 中每种运输方式的设置存储在哪里?

转载 作者:可可西里 更新时间:2023-11-01 08:08:59 24 4
gpt4 key购买 nike

我有两个独立的电子商务平台。

  1. 驱动所有订单和发货的大型旧系统。
  2. 由 WordPress/WooCommerce 提供支持的在线商店。

到目前为止,我们已经成功地自动化了许多简单的事情,比如从 WP 中提取订单,并将更新的库存水平推送给它。

但是,我无法理解的一件事是,当我创建 free_shipping 方法并设置最低支出时。它存储在数据库中的什么位置?

最佳答案

您可以问自己:Wordpress 插件在哪里存储它们的设置?

The answer is simply the wp_options table.

如果您的“免运费”送货方式 IDfree_shipping:10,您可以使用:

$free_shipping = get_option( 'woocommerce_free_shipping_10_settings' ); 
$min_amount = $free_shipping['min_amount'];

检索数据数组,其中 woocommerce_free_shipping_10_settingsoption_name

以下 SQL 搜索查询将检索您所有的“免费送货”方式设置:

SELECT * FROM `wp_options` WHERE `option_name` LIKE 'woocommerce_free_shipping%' 

关于php - WooCommerce 中每种运输方式的设置存储在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52310546/

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