'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; } } Personal hygiene | Vitility.com https://vitility.com Vitility | We make your life easier! Fri, 26 Apr 2024 19:49:49 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.2 https://vitility.com/wp-content/uploads/2021/12/Favicon_Zwart.svg Personal hygiene | Vitility.com https://vitility.com 32 32 Pumice stone with brush https://vitility.com/product/pumice-stone-with-brush/ https://vitility.com/product/pumice-stone-with-brush/#respond Tue, 18 Apr 2023 13:18:36 +0000 https://vitility.com/product/pumice-stone-with-brush/ The pumice stone with a brush is a multifunctional foot care aid. It has a big handle with TPR material which makes it non-slippery, and because of that, you can hold it firmly.

]]>
https://vitility.com/product/pumice-stone-with-brush/feed/ 0
Footrasp with file https://vitility.com/product/footrasp-with-file/ https://vitility.com/product/footrasp-with-file/#respond Tue, 18 Apr 2023 13:18:36 +0000 https://vitility.com/product/footrasp-with-file/ The foot rasp with the file will help you remove excessive buildup of skin, like calluses, around your feet and makes sure your feet will feel soft again. Because of the big handle with TPR material, it is easy to hold on to and put pressure on it if necessary.

]]>
https://vitility.com/product/footrasp-with-file/feed/ 0
Tweezer https://vitility.com/product/tweezer/ https://vitility.com/product/tweezer/#respond Tue, 18 Apr 2023 13:18:35 +0000 https://vitility.com/product/tweezer/ The tweezers allow you to remove splinters from your hands or feet. Of course, it can also come in handy when removing hairs from a cosmetic point-of-view. It has a silicon material that improves your grip around the product.

]]>
https://vitility.com/product/tweezer/feed/ 0
Nail clipper https://vitility.com/product/nail-clipper-2/ https://vitility.com/product/nail-clipper-2/#comments Tue, 18 Apr 2023 13:18:35 +0000 https://vitility.com/product/nail-clipper-2/ The nail clipper has a handle with a spring system that causes it to automatically re-open after clipping your nails.

]]>
https://vitility.com/product/nail-clipper-2/feed/ 2
Nail file https://vitility.com/product/nail-file-2/ https://vitility.com/product/nail-file-2/#respond Tue, 18 Apr 2023 13:18:35 +0000 https://vitility.com/product/nail-file-2/ The nail file has a non-slip handle that provides a better grip. It has a rough and fine side to take care of your nails.

]]>
https://vitility.com/product/nail-file-2/feed/ 0
Lotion applicator sponges https://vitility.com/product/lotion-applicator-sponges-2/ Fri, 01 Apr 2022 11:54:32 +0000 https://vitility.com/?post_type=product&p=4129 The sponge is suitable for the black Lotion applicator Vitility (NOTE: the sponges do not fit on the blue Lotion applicator). The recess in the applicator allows the sponge to be replaced by removing it from the applicator and pushing a new sponge into the applicator. Available per set of three pieces

]]>
Washing aid sponge https://vitility.com/product/washing-aid-sponge-2/ Fri, 01 Apr 2022 11:52:11 +0000 https://vitility.com/?post_type=product&p=4126 This sponge can be applied to the washing aid if it needs to be replaced. This sponge can be used for easy lubrication or washing with shower gel.

]]>
Brush https://vitility.com/product/brush/ Fri, 01 Apr 2022 11:49:37 +0000 https://vitility.com/?post_type=product&p=4118 The ergonomical designed brush with extended handle ensures you can reach the back and top of the head without unnecessary straining the hand, arm or shoulder. The non-slip handle provides extra grip.

]]>
Comb https://vitility.com/product/comb/ Fri, 01 Apr 2022 11:47:03 +0000 https://vitility.com/?post_type=product&p=4110 The ergonomical designed comb with extended handle ensures you can reach the back and top of the head without unnecessary straining the hand, arm or shoulder. The non-slip handle provides extra grip.

]]>
Nail file – steady https://vitility.com/product/nail-file-steady/ Fri, 01 Apr 2022 11:32:19 +0000 https://vitility.com/?post_type=product&p=4101 The nail file makes it easy to manage personal care and a beauty regime. It has suction cups on the bottom, so the nail file remains in place while in use.

]]>