IV Track Carriers
IV Track Carrier
NC 100 Carrier
Use with our 1100IV and 1100CT Track
Features:
- Self-lubricating and maintenance-free
- Glides smoothly around 12″ radius
- Locks in place with single 180-degree twist
- Non-conductive
- All nylon wheels
IV Hook
WM110
Features:
- Wall mount
- Used as temporary I.V. bag/bottle holder in patient bathrooms
- Available in lengths from 3-9 inches
- Stainless steel hook with aluminum tube and flange
Typical Layouts
IV Track Carrier
Use with our 1100IV and 1100CT Track
Self-lubricating and maintenance-free. All nylon wheels. Locks in place with single 180-degree twist.
IV Hook – WM110
Wall mount, Used as temporary I.V. bag/bottle holder in patient bathrooms, Stainless steel hook with aluminum tube and flange.
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]