'name_en' => 'Signature', 'type' => 'signature', 'group' => 'fancy', 'addon' => 'wpforms-signatures', 'order' => '310', ], [ 'icon' => 'fa-ellipsis-h', 'name' => esc_html__( 'Likert Scale', 'wpforms-lite' ), 'keywords' => esc_html__( 'survey, rating scale', 'wpforms-lite' ), 'name_en' => 'Likert Scale', 'type' => 'likert_scale', 'group' => 'fancy', 'addon' => 'wpforms-surveys-polls', 'order' => '400', ], [ 'icon' => 'fa-tachometer', 'name' => esc_html__( 'Net Promoter Score', 'wpforms-lite' ), 'keywords' => esc_html__( 'survey, nps', 'wpforms-lite' ), 'name_en' => 'Net Promoter Score', 'type' => 'net_promoter_score', 'group' => 'fancy', 'addon' => 'wpforms-surveys-polls', 'order' => '410', ], [ 'icon' => 'fa-credit-card', 'name' => esc_html__( 'PayPal Commerce', 'wpforms-lite' ), 'keywords' => esc_html__( 'store, ecommerce, credit card, pay, payment, debit card', 'wpforms-lite' ), 'name_en' => 'PayPal Commerce', 'type' => 'paypal-commerce', 'group' => 'payment', 'addon' => 'wpforms-paypal-commerce', 'order' => '89', ], [ 'icon' => 'fa-credit-card', 'name' => esc_html__( 'Square', 'wpforms-lite' ), 'keywords' => esc_html__( 'store, ecommerce, credit card, pay, payment, debit card', 'wpforms-lite' ), 'name_en' => 'Square', 'type' => 'square', 'group' => 'payment', 'addon' => 'wpforms-square', 'order' => '92', ], [ 'icon' => 'fa-credit-card', 'name' => esc_html__( 'Authorize.Net', 'wpforms-lite' ), 'keywords' => esc_html__( 'store, ecommerce, credit card, pay, payment, debit card', 'wpforms-lite' ), 'name_en' => 'Authorize.Net', 'type' => 'authorize_net', 'group' => 'payment', 'addon' => 'wpforms-authorize-net', 'order' => '95', ], [ 'icon' => 'fa-ticket', 'name' => esc_html__( 'Coupon', 'wpforms-lite' ), 'keywords' => esc_html__( 'discount, sale', 'wpforms-lite' ), 'name_en' => 'Coupon', 'type' => 'payment-coupon', 'group' => 'payment', 'addon' => 'wpforms-coupons', 'order' => '100', ], ]; $captcha = $this->get_captcha(); if ( ! empty( $captcha ) ) { array_push( $this->fields, $captcha ); } return $this->fields; } /** * Get Captcha field data. * * @since 1.6.6 * * @return array Captcha field data. */ private function get_captcha() { $captcha_settings = wpforms_get_captcha_settings(); if ( empty( $captcha_settings['provider'] ) ) { return []; } $captcha = [ 'hcaptcha' => [ 'name' => 'hCaptcha', 'icon' => 'fa-question-circle-o', ], 'recaptcha' => [ 'name' => 'reCAPTCHA', 'icon' => 'fa-google', ], 'turnstile' => [ 'name' => 'Turnstile', 'icon' => 'fa-question-circle-o', ], ]; if ( ! empty( $captcha_settings['site_key'] ) || ! empty( $captcha_settings['secret_key'] ) ) { $captcha_name = $captcha[ $captcha_settings['provider'] ]['name']; $captcha_icon = $captcha[ $captcha_settings['provider'] ]['icon']; } else { $captcha_name = 'CAPTCHA'; $captcha_icon = 'fa-question-circle-o'; } return [ 'icon' => $captcha_icon, 'name' => $captcha_name, 'name_en' => $captcha_name, 'keywords' => esc_html__( 'captcha, spam, antispam', 'wpforms-lite' ), 'type' => 'captcha_' . $captcha_settings['provider'], 'group' => 'standard', 'order' => 180, 'class' => 'not-draggable', ]; } /** * Get filtered fields data. * * Usage: * get_filtered( [ 'group' => 'payment' ] ) - fields from the 'payment' group. * get_filtered( [ 'addon' => 'surveys-polls' ] ) - fields of the addon 'surveys-polls'. * get_filtered( [ 'type' => 'payment-total' ] ) - field 'payment-total'. * * @since 1.6.6 * * @param array $args Arguments array. * * @return array Fields data filtered according to given arguments. */ private function get_filtered( $args = [] ) { $default_args = [ 'group' => '', 'addon' => '', 'type' => '', ]; $args = array_filter( wp_parse_args( $args, $default_args ) ); $fields = $this->get_all(); $filtered_fields = []; foreach ( $args as $prop => $prop_val ) { foreach ( $fields as $field ) { if ( ! empty( $field[ $prop ] ) && $field[ $prop ] === $prop_val ) { array_push( $filtered_fields, $field ); } } } return $filtered_fields; } /** * Get fields by group. * * @since 1.6.6 * * @param string $group Fields group (standard, fancy or payment). * * @return array. */ public function get_by_group( $group ) { return $this->get_filtered( [ 'group' => $group ] ); } /** * Get fields by addon. * * @since 1.6.6 * * @param string $addon Addon slug. * * @return array. */ public function get_by_addon( $addon ) { return $this->get_filtered( [ 'addon' => $addon ] ); } /** * Get field by type. * * @since 1.6.6 * * @param string $type Field type. * * @return array Single field data. Empty array if field is not available. */ public function get_field( $type ) { $fields = $this->get_filtered( [ 'type' => $type ] ); return ! empty( $fields[0] ) ? $fields[0] : []; } /** * Set key value of each field (conditionally). * * @since 1.6.6 * * @param array $fields Fields data. * @param string $key Key. * @param string $value Value. * @param string $condition Condition. * * @return array Updated field data. */ public function set_values( $fields, $key, $value, $condition ) { if ( empty( $fields ) || empty( $key ) ) { return $fields; } foreach ( $fields as $f => $field ) { switch ( $condition ) { case 'empty': $fields[ $f ][ $key ] = empty( $field[ $key ] ) ? $value : $field[ $key ]; break; default: $fields[ $f ][ $key ] = $value; } } return $fields; } } Style & safety combined | Vitility.com
Ordered before 21.00, shipped the same day
Available from stock

our new grab rail for your home

style & safety combined

We noticed a striking trend in the ADL market, and we immediately thought: we can do better! Homes are increasingly being decorated with matte black, white, and beige finishes, and this trend is also being embraced in bathrooms and toilets. 

We understand that the bathroom is a space that sees daily heavy use, but unfortunately, it’s also a place where a lot of accidents happen, especially for the elderly. Each year, more than 4,000 people end up in the hospital due to bathroom falls, and as we age, the risk of falling only increases. This is because flexibility and physical strength decrease with age, often resulting in lasting injuries. That’s why a safe bathroom is essential. 

Fortunately, there are many ways to prevent falls through a customized bathroom, such as bath and shower mats and grab rails to hold onto. And that’s why we’re excited to introduce our new grab rail, specially designed to prevent falls while giving your bathroom a fresh, stylish look. 

Previous slide
Next slide

our grab rail

The exceptional grab rail is designed with unique features that cater to a wide range of needs and preferences. This versatile support system offers unparalleled stability and grip, making it ideal for bathroom areas like showers, baths, and toilets. However, its versatility extends beyond these spaces, making it perfect for hallways and near the front door as well.

Our grab rail isn’t just for the elderly; it’s also perfect for younger individuals with mobility challenges who appreciate an attractive design without compromising on functionality. Unlike standard grab rails, our product stands out with its stylish yet secure design. Crafted from solid ABS plastic, it boasts a sleek and distinctive appearance that sets it apart from the typical “plumber pipe shapes” you may have encountered.

Installation is a breeze with just two screws, ensuring a secure mount that can handle an impressive weight of up to 150 kg. With our grab rail, you can trust that you’ll receive optimal support, no matter where you choose to place it.

Product

design

Are you curious about what our grab rail looks like and what parts it consists of? Our grab rail boasts unique features that we’d like to share with you.

The grab rail is the result of a creative process in which we designed a solid ABS grab rail with screw mounting. The product is different from the standard “plumber pipe shapes” and can be easily installed using 2 screws. 

Choose safety and style in your bathroom with our new grab rail. Transform your bathroom into a safe and appealing space for everyone! 

screw

mount

The grab rail is the result of a creative process in which we designed a solid ABS grab rail with screw mounting. The product is different from the standard “plumber pipe shapes” and can be easily installed using 2 screws.

available

in two colors

Our grab rail is currently available in two colors: charcoal black & pearl white.

The measurement of both the grab rail is 35 cm long and are 4 cm in width.

Solid

ABS material

The grab rail weighs 0.45 KG, making it a sturdy product that makes you feel safe while using it. Besides, our grab rail is temperature neutral instead of cold on the hand as with stainless steel.

Make your bathroom safe with this

smooth design grab rail

experience

support

The grab rail provides tremendous support, and grip, making it ideal for use in the shower, bath, and toilet areas. It’s not limited to just the sanitary spaces; it can also be used in other parts of the house.You can trust that you’ll receive optimal support.

it can handle

150 kg

Safety is key, and that’s why we’ve ensured that our grab rail can handle an impressive weight of 150 KG. We want you to have complete confidence in our products, which is why we strive for the highest quality and durability standards.

designed to last

CE-marking

In addition, we’ve also paid close attention to the health, safety, and environmental protection standards of our product. Our grab rail is conform CE standards, which means it complies with the EU standards for health, safety, and the environment. So you know you’re getting a quality product. 

attractive

Design

When it comes to style, we understand that you don’t want a grab rail that looks like a medical device. Our grab rail features a stylish design that seamlessly blends with the contemporary decor of your house. We want to keep up with the demand in the market, or even better, be ahead of it.

affordable price for

a durable product

As for the price, we’ve made sure that our grab rail is affordable compared to other options on the market. For a reasonable amount, you can enhance your bathroom with added safety and style for a long time. 

Vitility for companies.

Vitility is available in more than 40 countries, which is made possible by our partners all over the world. Together with our partners, we make life easier for people with physical challenges. Are you interested in selling our products and becoming a new potential partner? Then we would like to get in touch with you! 

Want to become a partner?

Already a partner?