Ẩn các sản phẩm hết hàng trong Related Products in WooCommerce

Khi mà Related Products hiển thị cả những sản phẩm hết hàng là lúc bạn cần thêm đoạn code này vào hunction.php là xong các chủ tịch nhé.

add_filter( 'woocommerce_related_products', 'mysite_filter_related_products', 10, 1 );
function mysite_filter_related_products( $related_product_ids ) {

    foreach( $related_product_ids as $key => $value ) {
        $relatedProduct = wc_get_product( $value );
        if( ! $relatedProduct->is_in_stock() ) {
            unset( $related_product_ids["$key"] );
        }
    }

    return $related_product_ids;
}