有什么方法可以替换woocommerce商店页面上可变产品的价格范围,而不是显示变体列表和每个产品的价格,以便向客户显示变体并显示所有类型的“添加到购物车”不是可变产品的“选择选项”。
我已经测试了很多代码片段,但是都没有成功。
下面的代码与我需要的最接近,我使用了Get specific product attribute name and value for each WooCommerce variation of a variable product此处建议的代码并进行了更改。但是问题仍然在于,部分属性没有显示。
add_filter( 'woocommerce_variable_price_html', 'custom_variable_price_html', 10, 2 );
function custom_variable_price_html( $price, $product ) {
if(!is_admin()){
if(is_shop()){
$product_attribute_slug = 'ابعاد-فرش';
$targeted_taxonomy = 'pa_' . $product_attribute_slug;
$available_variations = $product->get_available_variations();
$output = '<div>';
foreach( $available_variations as $variation_data ){
if( $variation_data['display_price'] === $variation_data['display_regular_price'] ) {
$price_to_display = wc_price( $variation_data['display_price'] );
} else {
$variation = wc_get_product($variation_data['variation_id']); // Get the WC_Product_Variation Object
$price_to_display = wc_get_price_to_display( $variation, array('price' => $variation->get_sale_price() ) );
}
foreach ( $variation_data['attributes'] as $variation_attribute => $term_slug ) {
// Get the taxonomy slug
$taxonomy = str_replace( 'attribute_', '', $variation_attribute );
// Get the correct product attribute term value for this variation
if( $taxonomy === $targeted_taxonomy ) {
// Get the attribute value term name
$term_name = get_term_by( 'slug', $term_slug, $taxonomy )->name;
}
}
$output .= '<span>' . $term_name . ':' . wc_attribute_label( $targeted_taxonomy ) . ':' . strip_tags($price_to_display) . '</span><br>';
}
$output .= '</div>';
$price = $output;
return $price;
} else {
return $price;
}
} else {
return $price;
}
}
我注意到
$ term_name
代码变量为空。
感谢您的帮助。
答案 0 :(得分:0)
解决方案:按照以下方法设置分类标准,并在get_term_by()
函数中使用它:
$taxonomy = 'pa_ابعاد-فرش';