在WooCommerce中,我需要将所有产品价格乘以一个数字。所以我使用了以下(通过插件):
add_filter('woocommerce_get_regular_price', array( $this, 'my_custom_price'), 99);
add_filter('woocommerce_get_price', array( $this, 'my_custom_price'), 99);
function my_custom_price( $original_price ) {
global $post, $woocommerce;
//Logic for calculating the new price here
$new_price = $original_price * 2;
//Return the new price (this is the price that will be used everywhere in the store)
return $new_price;
}
但是,对变体产品不起作用。我试过以下钩子没有运气:
add_filter('woocommerce_get_variation_regular_price', array( $this, 'my_custom_price'), 99);
add_filter('woocommerce_get_variation_price', array( $this, 'my_custom_price'), 99);
唯一能在中途工作的是这一个:
add_filter('woocommerce_variation_prices_price', array( $this, 'my_custom_price'), 99);
但这只是改变了整体价格,而不是选定的变化价格。见下图,价格是BsF。 200和整体价格是正确的,200 x 2 = 400,但选择时的变化价格仍显示200:
注意:我需要实际更改,因此显示html挂钩无法正常工作。
我有什么遗失或出错的地方吗?
答案 0 :(得分:9)
更新3 (2018年9月)
- 主题和插件的2个代码版本(也适用于Woocommerce 3.3.x)
- Woocommerce 3 中的缓存变体价格(更新和添加):
现在使用woocommerce_get_variation_prices_hash
过滤器钩子效率更高,而不是wc_delete_product_transients()
...请参阅{{ 3}}
1)带有构造函数的插件版本:
您使用的挂钩在WooCommerce 3 +
中已弃用要使其适用于所有产品价格,包括价格差异,您应该使用此功能:
## The following goes inside the constructor ##
// 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 (see explanations at the end)
add_filter( 'woocommerce_get_variation_prices_hash', array( $this, 'add_price_multiplier_to_variation_prices_hash' ), 99, 1 );
## This goes outside the constructor ##
// Utility function to change the prices with a multiplier (number)
public function get_price_multiplier() {
return 2; // x2 for testing
}
public function custom_price( $price, $product ) {
return $price * get_price_multiplier();
}
public function custom_variable_price( $price, $variation, $product ) {
return $price * get_price_multiplier();
}
public function add_price_multiplier_to_variation_prices_hash( $hash ) {
$hash[] = get_price_multiplier();
return $hash;
}
在WooCommerce 3 +中测试并完美地运行了代码。
2)对于主动版本: functions.php
关于活动子主题(或活动主题)的文件:
// Utility function to change the prices with a multiplier (number)
function get_price_multiplier() {
return 2; // x2 for testing
}
// Simple, grouped and external products
add_filter('woocommerce_product_get_price', 'custom_price', 99, 2 );
add_filter('woocommerce_product_get_regular_price', 'custom_price', 99, 2 );
// Variations
add_filter('woocommerce_product_variation_get_regular_price', 'custom_price', 99, 2 );
add_filter('woocommerce_product_variation_get_price', 'custom_price', 99, 2 );
function custom_price( $price, $product ) {
return $price * get_price_multiplier();
}
// Variable (price range)
add_filter('woocommerce_variation_prices_price', 'custom_variable_price', 99, 3 );
add_filter('woocommerce_variation_prices_regular_price', 'custom_variable_price', 99, 3 );
function custom_variable_price( $price, $variation, $product ) {
// Delete product cached price (if needed)
// wc_delete_product_transients($variation->get_id());
return $price * get_price_multiplier();
}
// Handling price caching (see explanations at the end)
add_filter( 'woocommerce_get_variation_prices_hash', 'add_price_multiplier_to_variation_prices_hash', 99, 1 );
function add_price_multiplier_to_variation_prices_hash( $hash ) {
$hash[] = get_price_multiplier();
return $hash;
}
测试并使用woocommerce 3 +
对于销售中的产品,你有这些钩子:
woocommerce_product_get_sale_price
(简单,分组和外部产品) woocommerce_variation_prices_sale_price
(可变产品(最小 - 最大)) woocommerce_variation_prices_sale_price
(产品变体) 参与变化缓存价格的3个过滤器挂钩是:
woocommerce_variation_prices_price
woocommerce_variation_prices_regular_price
woocommerce_variation_prices_sale_price
在Woocommerce 3中引入,
woocommerce_get_variation_prices_hash
过滤器挂钩将允许以更有效的方式刷新缓存价格,而不会在执行此挂钩时删除相关的瞬态。
所以表演会保持提升(感谢this related thread指出这更好的方式)
请参阅:Matthew Clark