Hướng dẫn hiển thị Phạm vi giá của danh mục sản phẩm trong WooCommerce

5/5 - (2 bình chọn)

Zubi Cloud hướng dẫn người dùng thiết kế wordpress cách làm sao để hiển thị Phạm vi giá của danh mục sản phẩm trong WooCommerce. Các sản phẩm biến WooCommerce hiển thị phạm vi giá theo mặc định, giống như sau: $ MIN – $ MAX. Bây giờ, sẽ không hay khi trên trang Cửa hàng hoặc Tiện ích danh mục, hiển thị phạm vi giá cho từng danh mục phải không?

 

Dưới đây là một đoạn mã đẹp để hiển thị giá MIN và MAX cho bất kỳ danh mục sản phẩm WooCommerce nhất định nào
Dưới đây là một đoạn mã đẹp để hiển thị giá MIN và MAX cho bất kỳ danh mục sản phẩm WooCommerce nhất định nào

Hướng dẫn hiển thị Phạm vi giá của danh mục sản phẩm trong WooCommerce

đoạn mã này thay thế bộ đếm danh mục sản phẩm bằng phạm vi giá . Trong trường hợp bạn muốn hiển thị cả hai, mã sẽ thay đổi một chút.

add_filter( 'woocommerce_subcategory_count_html', 'bbloomer_category_price_range', 9999, 2 );

function bbloomer_category_price_range( $html, $category ) {

$min = PHP_FLOAT_MAX;
$max = 0.00;

$all_ids = get_posts( array(
'post_type' => 'product',
'numberposts' => -1,
'post_status' => 'publish',
'fields' => 'ids',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => $category->slug,
),
array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'exclude-from-catalog',
'operator' => 'NOT IN',
),
)
) );

foreach ( $all_ids as $id ) {
$product = wc_get_product( $id );
if ( $product->is_type( 'simple' ) ) {
$min = $product->get_price() < $min ? $product->get_price() : $min;
$max = $product->get_price() > $max ? $product->get_price() : $max;
} elseif ( $product->is_type( 'variable' ) ) {
$prices = $product->get_variation_prices();
$min = current( $prices['price'] ) < $min ? current( $prices['price'] ) : $min;
$max = end( $prices['price'] ) > $max ? end( $prices['price'] ) : $max;
} 
}

return ' (' . wc_format_price_range( $min, $max ) . ')';
}
5/5 - (2 bình chọn)


  1. I have no words to describe how your content illuminated my day. Keep being that source of inspiration! 🌟

  2. Your post is a ray of light in the darkness. Thank you for brightening my day in a unique way. Keep shining! ☀️

  3. Побеждайте вместе с друзьями в онлайн казино Беларусь на платформе с высокими оценками
    онлайн казино Беларусь [url=https://sayokay.by/]онлайн казино Беларусь[/url] .

  4. Воєнторг
    8. Специальное снаряжение для боевых действий
    тактичні рукавиці купити [url=https://voentorgklyp.kiev.ua/odyag/rukavychky/]https://voentorgklyp.kiev.ua/odyag/rukavychky/[/url] .

  5. Cash Winning Games to Play in Kenya
    best online casino games kenya [url=https://levine.co.ke/best-online-games-that-pay-real-money-in-kenya]best online casino games kenya[/url] .

  6. Narin ve tatlı, aynı zamanda escort sakarya sakarya arkadaş canlısı ve eğlenceyi seven bir insanım. Her zaman gülümseyen ve çok açık fikirli güzel bir hanımefendiyim. Doğal bir vücudum var, inanılmaz deneyim arayışında iseniz o halde ne arzuladığınızı bana iletebilirsiniz.

  7. Escort Sakarya Bayan Birbirinden güzel kadınlarla alakadar ne ararsanız bulabileceğiniz Bayan arkadaş arama sayfası sizin için 24 saat hizmet sunar.

  8. hello!,I really like your writing so a lot! share we keep up a correspondence extra approximately your post on AOL? I need an expert in this house to unravel my problem. May be that is you! Taking a look ahead to see you.

Trả lời

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *