希望标题是相当自我解释的!我在这里使用WooCommerce中的测量价格计算器(MPC)。我在我的functions.php中添加了调整以更改变量产品上的价格显示,以便隐藏从 - 到价格范围并只显示&# 34;来自{最低价格}" 。我相信这是用户在WooCommerce中做出的一个相当普遍的调整,但我将包含我在下面使用的代码,因为我希望它也适用于MPC。
我的问题是,当使用MPC的定价表功能时,它会返回显示表格的价格范围,例如: "€0.86 - €0.98 /平方米" 。我的调整没有发现这一点,我联系了开发人员Skyverge,他无法给我一个修复,但确实指向了" wc_measurement_price_calculator_get_price_html" 过滤器。
使用MPC时,有没有人设法使用此类似物,或者有人建议使用Skyverge建议的过滤器吗?
我用于变量产品的代码如下:
// Hide Price Range on Variable Products
add_filter( 'woocommerce_variable_sale_price_html', 'variation_price_format', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'variation_price_format', 10, 2 );
function variation_price_format( $price, $product ) {
// Main Price
$prices = array( $product->get_variation_price( 'min', true ),
$product->get_variation_price( 'max', true ) );
$price = $prices[0] !== $prices[1] ? sprintf( __( 'from %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
// Sale Price
$prices = array( $product->get_variation_regular_price( 'min', true ), $product->get_variation_regular_price( 'max', true ) );
sort( $prices );
$saleprice = $prices[0] !== $prices[1] ? sprintf( __( 'from %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
if ( $price !== $saleprice ) {
$price = '<del>' . $saleprice . '</del> <ins>' . $price . '</ins>';
}
return $price;
}
答案 0 :(得分:0)
没有任何保证,请尝试:
add_filter('wc_measurement_price_calculator_get_price_html', 'm_p_caculator_variable_product_prices', 10, 1 );
function m_p_caculator_variable_product_prices( $price_html ) {
if( ! $product->is_type('variable') ) return $price_html; // Only variable products
// Main Price
$prices = array( $product->get_variation_price( 'min', true ), $product->get_variation_price( 'max', true ) );
$price_html = $prices[0] !== $prices[1] ? sprintf( __( 'from %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
// Sale Price
$prices = array( $product->get_variation_regular_price( 'min', true ), $product->get_variation_regular_price( 'max', true ) );
sort( $prices );
$sale_price = $prices[0] !== $prices[1] ? sprintf( __( 'from %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
if ( $price_html !== $saleprice ) {
$price_html = '<del>' . $saleprice . '</del> <ins>' . $price_html . '</ins>';
}
return $price_html;
}
代码进入活动子主题(或活动主题)的function.php文件。未经测试。