在 WooCommerce 3 中使用 Hooks 更改产品价格
WooCommerce 3 引入了使用 Hooks 操纵产品价格的改进选项,包括变化价格的选项。但是,您尝试的挂钩可能不合适。
用于控制产品价格的推荐挂钩是:
简单、分组和外部产品:
变体:
变量 (价格范围):
销售额:
对于变化价格,您还需要管理缓存价格。 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中文网其他相关文章!