php 可变产品价格范围#woo

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 可变产品价格范围#woo相关的知识,希望对你有一定的参考价值。

//  Disable Variable Product Price Range
add_filter( 'woocommerce_variable_price_html', 'variation_price_format_310', 10, 2 );
	 
	function variation_price_format_310( $price, $product ) {
	 
		// 1. Find the minimum regular and sale prices
		$min_var_reg_price = $product->get_variation_regular_price( 'min', true );
		$min_var_sale_price = $product->get_variation_sale_price( 'min', true );
		 
		// 2. New $price
		if ( $min_var_sale_price < $min_var_reg_price ) {
		$price = sprintf( __( 'From: <del>%1$s</del><ins>%2$s</ins>', 'woocommerce' ), wc_price( $min_var_reg_price ), wc_price( $min_var_sale_price ) );
		} else {
		$price = sprintf( __( '%1$s', 'woocommerce' ), wc_price( $min_var_reg_price ) );
		}
		 
	return $price;
	} 

以上是关于php 可变产品价格范围#woo的主要内容,如果未能解决你的问题,请参考以下文章

用 WooCommerce 3 中选择的变化价格替换可变价格范围

php WooCommerce:显示具有相同变化价格的可变产品的价格

在WooCommerce中取代可变产品定价

php 内容低于产品图片#woo

php 重新排序单个产品布局#woo

php 从Shop #woo #hide中排除产品