首页 > 后端开发 > php教程 > 如何使用 Hook 有效更改 WooCommerce 3 中的产品价格?

如何使用 Hook 有效更改 WooCommerce 3 中的产品价格?

Barbara Streisand
发布: 2024-11-28 08:38:11
原创
400 人浏览过

How Can I Efficiently Change Product Prices in WooCommerce 3  Using Hooks?

在 WooCommerce 3 中使用 Hooks 更改产品价格

WooCommerce 3 引入了使用 Hooks 操纵产品价格的改进选项,包括变化价格的选项。但是,您尝试的挂钩可能不合适。

用于控制产品价格的推荐挂钩是:

  • 简单、分组和外部产品:

    • woocommerce_product_get_price
    • woocommerce_product_get_regular_price
  • 变体:

    • woocommerce_product_variation_get_regular_price
    • woocommerce_product_variation_get_price
  • 变量 (价格范围):

    • woocommerce_variation_prices_price
    • woocommerce_ variation_prices_regular_price
  • 销售额:

    • wooco mmerce_product_get_sale_price
    • woocommerce_variation_prices_sale_price
    • woocommerce_product_variation_get_sale_price

对于变化价格,您还需要管理缓存价格。 woocommerce_get_variation_prices_hash 过滤器对于此目的非常有效。

为了更有效地处理变化,请考虑下面提供的代码的插件版本。它包含一个构造函数并处理价格缓存。

// Plugin Version
class MyPlugin {
    public function __construct() {
        // Simple, grouped, and external products
        add_filter('woocommerce_product_get_price', array($this, 'custom_price'), 99, 2);
        add_filter('woocommerce_product_get_regular_price', array($this, 'custom_price'), 99, 2);
        // Variations
        add_filter('woocommerce_product_variation_get_regular_price', array($this, 'custom_price'), 99, 2);
        add_filter('woocommerce_product_variation_get_price', array($this, 'custom_price'), 99, 2);
        // Variable (price range)
        add_filter('woocommerce_variation_prices_price', array($this, 'custom_variable_price'), 99, 3);
        add_filter('woocommerce_variation_prices_regular_price', array($this, 'custom_variable_price'), 99, 3);
        // Handling price caching
        add_filter('woocommerce_get_variation_prices_hash', array($this, 'add_price_multiplier_to_variation_prices_hash'), 99, 3);
    }
    // ...functionality as described in the original answer...
}
new MyPlugin();
登录后复制

对于主题使用,请将以下代码放入您的functions.php文件中:

// Theme Version
// ...functionality as described in the original answer...
登录后复制

记住,使用显示html挂钩不会有效改变产品价格。此外,考虑在小部件中过滤产品价格的挂钩,它允许设置最低和最高价格。

以上是如何使用 Hook 有效更改 WooCommerce 3 中的产品价格?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板