慕容3067478
我认为你的客户函数 php 文件中需要这样的东西:function custom_default_variation_price( $price, $product ) { foreach($product->get_available_variations() as $pav){ $defautl=true; foreach($product->get_default_attributes() as $defkey=>$defval){ if($pav['attributes']['attribute_'.$defkey]!=$defval){ $defautl=false; } } if($defautl){ $price = $pav['display_price']; } } return wc_price($price);}add_filter( 'woocommerce_variable_sale_price_html', 'custom_default_variation_price', 10, 2 );add_filter( 'woocommerce_variable_price_html', 'custom_default_variation_price', 10, 2 );