/** * Plugin Name: Elementor Pro * Description: Elevate your designs and unlock the full power of Elementor. Gain access to dozens of Pro widgets and kits, Theme Builder, Pop Ups, Forms and WooCommerce building capabilities. * Plugin URI: https://go.elementor.com/wp-dash-wp-plugins-author-uri/ * Version: 3.31.2 * Author: Elementor.com * Author URI: https://go.elementor.com/wp-dash-wp-plugins-author-uri/ * Text Domain: elementor-pro * Requires Plugins: elementor * Elementor tested up to: 3.31.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'ELEMENTOR_PRO_VERSION', '3.31.2' ); /** * All versions should be `major.minor`, without patch, in order to compare them properly. * Therefore, we can't set a patch version as a requirement. * (e.g. Core 3.15.0-beta1 and Core 3.15.0-cloud2 should be fine when requiring 3.15, while * requiring 3.15.2 is not allowed) */ define( 'ELEMENTOR_PRO_REQUIRED_CORE_VERSION', '3.29' ); define( 'ELEMENTOR_PRO_RECOMMENDED_CORE_VERSION', '3.31' ); define( 'ELEMENTOR_PRO__FILE__', __FILE__ ); define( 'ELEMENTOR_PRO_PLUGIN_BASE', plugin_basename( ELEMENTOR_PRO__FILE__ ) ); define( 'ELEMENTOR_PRO_PATH', plugin_dir_path( ELEMENTOR_PRO__FILE__ ) ); define( 'ELEMENTOR_PRO_ASSETS_PATH', ELEMENTOR_PRO_PATH . 'assets/' ); define( 'ELEMENTOR_PRO_MODULES_PATH', ELEMENTOR_PRO_PATH . 'modules/' ); define( 'ELEMENTOR_PRO_URL', plugins_url( '/', ELEMENTOR_PRO__FILE__ ) ); define( 'ELEMENTOR_PRO_ASSETS_URL', ELEMENTOR_PRO_URL . 'assets/' ); define( 'ELEMENTOR_PRO_MODULES_URL', ELEMENTOR_PRO_URL . 'modules/' ); // Include Composer's autoloader if ( file_exists( ELEMENTOR_PRO_PATH . 'vendor/autoload.php' ) ) { require_once ELEMENTOR_PRO_PATH . 'vendor/autoload.php'; // We need this file because of the DI\create function that we are using. // Autoload classmap doesn't include this file. require_once ELEMENTOR_PRO_PATH . 'vendor_prefixed/php-di/php-di/src/functions.php'; } /** * Load gettext translate for our text domain. * * @since 1.0.0 * * @return void */ function elementor_pro_load_plugin() { if ( ! did_action( 'elementor/loaded' ) ) { add_action( 'admin_notices', 'elementor_pro_fail_load' ); return; } $core_version = ELEMENTOR_VERSION; $core_version_required = ELEMENTOR_PRO_REQUIRED_CORE_VERSION; $core_version_recommended = ELEMENTOR_PRO_RECOMMENDED_CORE_VERSION; if ( ! elementor_pro_compare_major_version( $core_version, $core_version_required, '>=' ) ) { add_action( 'admin_notices', 'elementor_pro_fail_load_out_of_date' ); return; } if ( ! elementor_pro_compare_major_version( $core_version, $core_version_recommended, '>=' ) ) { add_action( 'admin_notices', 'elementor_pro_admin_notice_upgrade_recommendation' ); } require ELEMENTOR_PRO_PATH . 'plugin.php'; } function elementor_pro_compare_major_version( $left, $right, $operator ) { $pattern = '/^(\d+\.\d+).*/'; $replace = '$1.0'; $left = preg_replace( $pattern, $replace, $left ); $right = preg_replace( $pattern, $replace, $right ); return version_compare( $left, $right, $operator ); } add_action( 'plugins_loaded', 'elementor_pro_load_plugin' ); function print_error( $message ) { if ( ! $message ) { return; } // PHPCS - $message should not be escaped echo '
' . $message . '
'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * Show in WP Dashboard notice about the plugin is not activated. * * @since 1.0.0 * * @return void */ function elementor_pro_fail_load() { $screen = get_current_screen(); if ( isset( $screen->parent_file ) && 'plugins.php' === $screen->parent_file && 'update' === $screen->id ) { return; } $plugin = 'elementor/elementor.php'; if ( _is_elementor_installed() ) { if ( ! current_user_can( 'activate_plugins' ) ) { return; } $activation_url = wp_nonce_url( 'plugins.php?action=activate&plugin=' . $plugin . '&plugin_status=all&paged=1&s', 'activate-plugin_' . $plugin ); $message = '

' . esc_html__( 'You\'re not using Elementor Pro yet!', 'elementor-pro' ) . '

'; $message .= '

' . esc_html__( 'Activate the Elementor plugin to start using all of Elementor Pro plugin’s features.', 'elementor-pro' ) . '

'; $message .= '

' . sprintf( '%s', $activation_url, esc_html__( 'Activate Now', 'elementor-pro' ) ) . '

'; } else { if ( ! current_user_can( 'install_plugins' ) ) { return; } $install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' ); $message = '

' . esc_html__( 'Elementor Pro plugin requires installing the Elementor plugin', 'elementor-pro' ) . '

'; $message .= '

' . esc_html__( 'Install and activate the Elementor plugin to access all the Pro features.', 'elementor-pro' ) . '

'; $message .= '

' . sprintf( '%s', $install_url, esc_html__( 'Install Now', 'elementor-pro' ) ) . '

'; } print_error( $message ); } function elementor_pro_fail_load_out_of_date() { if ( ! current_user_can( 'update_plugins' ) ) { return; } $file_path = 'elementor/elementor.php'; $upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path ); $message = sprintf( '

%1$s

%2$s %4$s

', esc_html__( 'Elementor Pro requires newer version of the Elementor plugin', 'elementor-pro' ), esc_html__( 'Update the Elementor plugin to reactivate the Elementor Pro plugin.', 'elementor-pro' ), $upgrade_link, esc_html__( 'Update Now', 'elementor-pro' ) ); print_error( $message ); } function elementor_pro_admin_notice_upgrade_recommendation() { if ( ! current_user_can( 'update_plugins' ) ) { return; } $file_path = 'elementor/elementor.php'; $upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path ); $message = sprintf( '

%1$s

%2$s %4$s

', esc_html__( 'Don’t miss out on the new version of Elementor', 'elementor-pro' ), esc_html__( 'Update to the latest version of Elementor to enjoy new features, better performance and compatibility.', 'elementor-pro' ), $upgrade_link, esc_html__( 'Update Now', 'elementor-pro' ) ); print_error( $message ); } if ( ! function_exists( '_is_elementor_installed' ) ) { function _is_elementor_installed() { $file_path = 'elementor/elementor.php'; $installed_plugins = get_plugins(); return isset( $installed_plugins[ $file_path ] ); } } GCC Salon Jobs | Spa & Salon Staff Recruitment | GCC Salon Consultancy & Recruitment | Nail Technician Jobs in Dubai
Spa & Salon Staff Recruitment | GCC Salon Consultancy & Recruitment | Nail Technician Jobs in Dubai

Home | Salon Consultancy Services in GCC

salon consultancy in gcc
We make recruitment Enjoyable, Efficient & Engaging!
Find Salon Cleaner

Salon & Spa Cleaner

Salon & Spa Cleaners will do sweeping, mopping, scrubbing, or vacuuming. Helping in the product store management, giving tea coffee to costumers etc. And, all the jobs related to cleaners in the workspace.                                                       

all rounder beautician job in dubai

All Rounder Beautician

All rounder beautician’s job role is salon helper and supportive role to the hair stylist, and nail technician. She has to do Mani-Pedi, Waxing, threading, Hair Blow dry, Keratin, Henna designing, etc.                                

find a salon staff in dubai

Mani-Pedicurist

Manicurists and pedicurists clean, shape, beautify fingernails and toenails. Mani-pedicurists also have to do different kinds of waxing like full body, classic, bikini, etc. usually work in a nail salon, spa, or hair salon.

barista job in salon

Salon Barista

Greet the guest, prepare and serve coffee and tea drinks that meet quality standards. Handle and maintain all equipment. Respond to orders, questions, concerns, and complaints in a polite and efficient manner. Serve customers quickly and efficiently. 

salon receptionist job in dubai

Reception cum Cashier 

Salon Reception cum Cashier duties include greeting customers upon arrival, answering clients’ questions about services via phone, email, or in person, and processing transactions. A good salon receptionist must handle pressure and be organized. 

Massage Therapist job in dubai

Massage Therapist

A massage therapist performs therapeutic massages on clients to improve circulation, promote relaxation, and relieve stress and pain. A professional therapist must be up-to-date with the trending therapy to classic therapy.                                                               

gel extention course

Nail Technician

Nail technicians has to make nails & nail art according to the demand of the clients. On top of that she has to clean, file, trim, polish, and repair fingernails and toenails. Also, discuss nail treatment with clients, such as nail design or moisturizing hands and feet, and sell additional services and products. 

 

hair-stylist-job-in-dubai

Hair Stylist 

Hair Stylist responsibilities include cutting hair using basic and advanced techniques, consulting customers about styles and colors, applying hair care products, like treatment oils and masks offering beauty advice, recommending hair products, adhering to hygiene rules, sanitizing tools and equipment.                              

hire salon manager in dubai

Salon & Spa Manager

Salon managers have to maintain a smooth flow in the salon. She has to manage the staff’s duty timing according to the pick hours demand. Also, has to flow up in hiring and training staff, promoting high levels of customer service, advertising their services, and ordering and selling. 

Are you Searching for a new Staff!

Request for We make recruitment Fast, Reliable & Enjoyable.

Happy to Help

Please share your requirements and contact details and we will get in touch with you at our earliest.

Or Contact us Directly

+971 588058244

Are you thinking of upgrading your career!

  • 00Days
  • 00Hours
  • 00Minutes
  • 00Seconds