当我创建一个有变化的woocommerce产品时,比如一件不同尺寸的T恤,产品页面会显示一个“起始”价格。因为所有产品的价格都是一样的,所以我不需要显示起始价格。我只想删除起始价格,然后当用户在选择框中进行选择时,价格就会出现。如何删除变动价格?
bq3bfh9z1#
将此添加到functions.php
add_filter('woocommerce_variable_price_html','custom_from',10); add_filter('woocommerce_grouped_price_html','custom_from',10); add_filter('woocommerce_variable_sale_price_html','custom_from',10); function custom_from($price){ return false; }
5vf7fwbs2#
只需复制并粘贴下面的代码为您的主题function.php文件。
function.php
function patricks_custom_variation_price( $price, $product ) { $target_product_types = array( 'variable' ); if ( in_array ( $product->product_type, $target_product_types ) ) { // if variable product return and empty string return ''; } // return normal price return $price; } add_filter('woocommerce_get_price_html', 'patricks_custom_variation_price', 10, 2);
qzwqbdag3#
.price{ display:none !important;}
3条答案
按热度按时间bq3bfh9z1#
将此添加到functions.php
5vf7fwbs2#
只需复制并粘贴下面的代码为您的主题
function.php
文件。qzwqbdag3#