IV Bottle Holders
Telescoping
Cube Care makes the highest quality IV Bottle Holders available.
Features Include:
- Single button adjustment with auto lock for one-handed adjustment
- Static reducing nylon inserts in hanging eyelets
- All aluminum and stainless steel machined parts
- Telescoping models offer up to 16″ of smooth, vertical adjustment
- Bottle holder length is based on ceiling height
- Standard sizes accommodate ceilings up to 10′. Extensions for taller ceilings are available
Typical Layouts
4000 SERIES
Telescoping IV Bottle Holder
4000B
Four IV stations at the bottom
Telescoping Shaft
Single hand adjustment
4000TB
Two IV stations at the top and bottom
Telescoping Shaft
Single hand adjustment
8000 SERIES
Telescoping IV Bottle Holder
8000
Eight IV stations
Four IV stations at the top and bottom
Most versatile
Telescoping Shaft
Single hand adjustment
Questions are good answers are BETTER !
Did not find what you are looking for ?
Please contact us at 305-556-8700 or click “Contact Us” button below to chat/send email.
One of our customer care associates will be available help you between the hours of 8-5 eastern standard time.
Thank you for visiting our site.
[insert_php]
//MODIFICAR EN VALOR DE LA VARIABLE $slug POR EL SLUG DE LA CATEGORIA QUE SE DESEA BUSCAR
$slug = ‘standard-iv-system’;
$tax_query = array();
$filtro = array(
‘taxonomy’ => ‘product_cat’,
‘field’ => ‘slug’,
‘terms’ => $slug
);
array_push( $tax_query, $filtro );
$args = array(
‘post_type’ => ‘product’,
‘post_status’ => ‘publish’,
‘tax_query’ => $tax_query,
‘posts_per_page’ => -1,
‘orderby’ => array(
‘nom_clause’ => ‘ASC’
)
);
$products_query= new WP_Query( $args );
if ( ! $products_query->have_posts() ) {
//echo “NADA COMPA”;
echo ‘
‘;
}
else {
foreach ($products_query->posts as $prod) {
/*==========================*/
$img = get_the_post_thumbnail_url( $prod->ID );
$_product = wc_get_product( $prod->ID );
$precio = $_product->get_price();
$link = get_permalink($prod->ID);
echo ‘
‘;
echo ‘
‘;
echo ‘
‘.$prod->post_content.’
View Details>>
‘;
echo ‘
‘;
/*==========================*/
}
}
[/insert_php]