function display_product_name_from_url() { // Get the product_name parameter from the URL $product_name = isset($_GET['product_name']) ? sanitize_text_field($_GET['product_name']) : ''; //return esc_html($product_name); return '
'.$product_name.'
'; } add_shortcode('product_name', 'display_product_name_from_url'); /** * Theme functions and definitions. * * Sets up the theme and provides some helper functions * * When using a child theme (see https://codex.wordpress.org/Theme_Development * and https://codex.wordpress.org/Child_Themes), you can override certain * functions (those wrapped in a function_exists() call) by defining them first * in your child theme's functions.php file. The child theme's functions.php * file is included before the parent theme's file, so the child theme * functions would be used. * * * For more information on hooks, actions, and filters, * see https://codex.wordpress.org/Plugin_API * * @package Enzian WordPress theme */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if(!defined('ENZIAN_THEME_VERSION')){ define('ENZIAN_THEME_VERSION', '1.0.6'); } if(!class_exists('Enzian_Theme_Class')){ final class Enzian_Theme_Class { public static $template_dir_path = ''; public static $template_dir_url = ''; /** * @var Enzian_Ajax_Manager $ajax_manager; */ public $ajax_manager; protected $extra_style = ''; /** * Main Theme Class Constructor * * @since 1.0.0 */ public function __construct() { self::$template_dir_path = get_template_directory(); self::$template_dir_url = get_template_directory_uri(); // Define constants add_action( 'after_setup_theme', array( $this, 'constants' ), 0 ); // Load all core theme function files add_action( 'after_setup_theme', array( $this, 'include_functions' ), 1 ); // Load configuration classes add_action( 'after_setup_theme', array( $this, 'configs' ), 3 ); // Load framework classes add_action( 'after_setup_theme', array( $this, 'classes' ), 4 ); // Setup theme => add_theme_support: register_nav_menus, load_theme_textdomain, etc add_action( 'after_setup_theme', array( $this, 'theme_setup' ) ); add_action( 'after_setup_theme', array( $this, 'theme_setup_default' ) ); // register sidebar widget areas add_action( 'widgets_init', array( $this, 'register_sidebars' ) ); /** Admin only actions **/ if( is_admin() ) { // Load scripts in the WP admin add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) ); add_action( 'elementor/editor/before_enqueue_scripts', array( $this, 'admin_scripts' ) ); } /** Non Admin actions **/ else{ // Load theme CSS add_action( 'wp_enqueue_scripts', array( $this, 'theme_css' ) ); // Load theme js add_action( 'wp_enqueue_scripts', array( $this, 'theme_js' ), 99 ); // Add a pingback url auto-discovery header for singularly identifiable articles add_action( 'wp_head', array( $this, 'pingback_header' ), 1 ); // Add meta viewport tag to header add_action( 'wp_head', array( $this, 'meta_viewport' ), 1 ); // Add meta apple web app capable tag to header add_action( 'wp_head', array( $this, 'apple_mobile_web_app_capable_header' ), 1 ); // Add an X-UA-Compatible header add_filter( 'wp_headers', array( $this, 'x_ua_compatible_headers' ) ); // Add support for Elementor Pro locations add_action( 'elementor/theme/register_locations', array( $this, 'register_elementor_locations' ) ); } add_action( 'elementor/init', array( $this, 'register_breakpoint' ) ); require_once get_theme_file_path('/framework/classes/ajax-manager.php'); $this->ajax_manager = new Enzian_Ajax_Manager(); } /** * Define Constants * * @since 1.0.0 */ public function constants() {} /** * Load all core theme function files * * @since 1.0.0 */ public function include_functions() { require_once get_theme_file_path('/framework/functions/helpers.php'); require_once get_theme_file_path('/framework/functions/theme-hooks.php'); require_once get_theme_file_path('/framework/functions/theme-functions.php'); require_once get_theme_file_path('/framework/third/lastudio-kit.php'); } /** * Configs for 3rd party plugins. * * @since 1.0.0 */ public function configs() { // WooCommerce if(function_exists('WC')){ require_once get_theme_file_path('/framework/woocommerce/woocommerce-config.php'); } } /** * Load theme classes * * @since 1.0.0 */ public function classes() { // Admin only classes if ( is_admin() ) { // Recommend plugins require_once get_theme_file_path('/tgm/class-tgm-plugin-activation.php'); require_once get_theme_file_path('/tgm/tgm-plugin-activation.php'); } require_once get_theme_file_path('/framework/classes/class-admin.php'); // Breadcrumbs class require_once get_theme_file_path('/framework/classes/breadcrumbs.php'); new Enzian_Admin(); } /** * Theme Setup * * @since 1.0.0 */ public function theme_setup() { $ext = apply_filters('enzian/use_minify_css_file', false) || ( defined('WP_DEBUG') && WP_DEBUG ) ? '' : '.min'; // Load text domain load_theme_textdomain( 'enzian', self::$template_dir_path .'/languages' ); // Get globals global $content_width; // Set content width based on theme's default design if ( ! isset( $content_width ) ) { $content_width = 1200; } // Register navigation menus register_nav_menus( array( 'main-nav' => esc_attr_x( 'Main Navigation', 'admin-view', 'enzian' ) ) ); // Enable support for Post Formats add_theme_support( 'post-formats', array( 'video', 'gallery', 'audio', 'quote', 'link' ) ); // Enable support for tag add_theme_support( 'title-tag' ); // Add default posts and comments RSS feed links to head add_theme_support( 'automatic-feed-links' ); // Enable support for Post Thumbnails on posts and pages add_theme_support( 'post-thumbnails' ); /** * Enable support for header image */ add_theme_support( 'custom-header', apply_filters( 'enzian/filter/custom_header_args', array( 'width' => 2000, 'height' => 1200, 'flex-height' => true, 'video' => true, ) ) ); add_theme_support( 'custom-background' ); // Declare WooCommerce support. add_theme_support( 'woocommerce' ); if( enzian_string_to_bool( enzian_get_theme_mod('woocommerce_gallery_zoom') ) ){ add_theme_support( 'wc-product-gallery-zoom'); } if( enzian_string_to_bool( enzian_get_theme_mod('woocommerce_gallery_lightbox') ) ){ add_theme_support( 'wc-product-gallery-lightbox'); } add_theme_support( 'wc-product-gallery-slider'); // Support WP Job Manager add_theme_support( 'job-manager-templates' ); // Add editor style add_editor_style( 'assets/css/editor-style.css' ); // Adding Gutenberg support add_theme_support( 'align-wide' ); add_theme_support( 'wp-block-styles' ); add_theme_support( 'responsive-embeds' ); add_theme_support( 'editor-styles' ); add_editor_style( 'assets/css/gutenberg-editor.css' ); add_theme_support( 'editor-color-palette', array( array( 'name' => esc_attr_x( 'pale pink', 'admin-view', 'enzian' ), 'slug' => 'pale-pink', 'color' => '#f78da7', ), array( 'name' => esc_attr_x( 'theme primary', 'admin-view', 'enzian' ), 'slug' => 'enzian-theme-primary', 'color' => '#BC8157', ), array( 'name' => esc_attr_x( 'theme secondary', 'admin-view', 'enzian' ), 'slug' => 'enzian-theme-secondary', 'color' => '#212121', ), array( 'name' => esc_attr_x( 'strong magenta', 'admin-view', 'enzian' ), 'slug' => 'strong-magenta', 'color' => '#a156b4', ), array( 'name' => esc_attr_x( 'light grayish magenta', 'admin-view', 'enzian' ), 'slug' => 'light-grayish-magenta', 'color' => '#d0a5db', ), array( 'name' => esc_attr_x( 'very light gray', 'admin-view', 'enzian' ), 'slug' => 'very-light-gray', 'color' => '#eee', ), array( 'name' => esc_attr_x( 'very dark gray', 'admin-view', 'enzian' ), 'slug' => 'very-dark-gray', 'color' => '#444', ), ) ); remove_theme_support( 'widgets-block-editor' ); add_theme_support('lastudio', [ 'swatches' => true, 'revslider' => true, 'header-builder' => [ 'menu' => true, 'header-vertical' => true ], 'lastudio-kit' => true, 'elementor' => [ 'advanced-carousel' => false, 'ajax-templates' => false, 'css-transform' => false, 'floating-effects' => false, 'wrapper-links' => false, 'lastudio-icon' => true, 'custom-fonts' => true, 'mega-menu' => true, ], ]); } /** * Theme Setup Default * * @since 1.0.0 */ public function theme_setup_default(){ $check_theme = get_option('enzian_has_init', false); if(!$check_theme || !get_option('lastudio-kit-settings')){ update_option('enzian_has_init', true); update_option( 'elementor_cpt_support', array( 'page', 'post', 'la_portfolio') ); update_option( 'lastudio-kit-settings', [ 'svg-uploads' => 'enabled', 'lastudio_kit_templates' => 'enabled', 'single_post_template' => 'templates/fullwidth.php', 'single_page_template' => 'templates/fullwidth.php', ] ); $customizes = [ 'body_font_family' => 'Nunito Sans, sans-serif', 'heading_font_family' => 'Cormorant, serif', 'heading_font_weight' => 700, ]; foreach ($customizes as $k => $v){ set_theme_mod($k, $v); } } } /** * Adds the meta tag to the site header * * @since 1.0.0 */ public function pingback_header() { if ( is_singular() && pings_open() ) { printf( '<link rel="pingback" href="%s">' . "\n", esc_url( get_bloginfo( 'pingback_url' ) ) ); } } /** * Adds the meta tag to the site header * * @since 1.0.0 */ public function apple_mobile_web_app_capable_header() { printf( '<meta name="apple-mobile-web-app-capable" content="yes">' ); } /** * Adds the meta tag to the site header * * @since 1.0.0 */ public function meta_viewport() { // Meta viewport $viewport = '<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0">'; // Apply filters for child theme tweaking echo apply_filters( 'enzian_meta_viewport', $viewport ); } /** * Load scripts in the WP admin * * @since 1.0.0 */ public function admin_scripts() { // Load font icon style wp_enqueue_style( 'enzian-font-lastudioicon', get_theme_file_uri( '/assets/css/lastudioicon.min.css' ), false, '1.0.0' ); wp_enqueue_style( 'enzian-fonts', $this->enqueue_google_fonts_url() , array(), null ); } /** * Load front-end scripts * * @since 1.0.0 */ public function theme_css() { $theme_version = defined('WP_DEBUG') && WP_DEBUG ? time() : ENZIAN_THEME_VERSION; $ext = apply_filters('enzian/use_minify_css_file', false) || ( defined('WP_DEBUG') && WP_DEBUG ) ? '' : '.min'; // Load font icon style wp_enqueue_style( 'enzian-font-lastudioicon', get_theme_file_uri ('/assets/css/lastudioicon'.$ext.'.css' ), false, $theme_version ); if(!function_exists('lastudio_kit')) { wp_enqueue_style( 'enzian-fonts', $this->enqueue_google_fonts_url() , array(), null ); } wp_enqueue_style( 'enzian-theme', get_parent_theme_file_uri('/style'.$ext.'.css'), false, $theme_version ); $this->render_extra_style(); $additional_inline_stype = $this->extra_style; $inline_handler_name = 'enzian-theme'; if(function_exists('WC')){ wp_enqueue_style( 'enzian-woocommerce', get_theme_file_uri( '/assets/css/woocommerce'.$ext.'.css' ), false, $theme_version ); $inline_handler_name = 'enzian-woocommerce'; } wp_add_inline_style($inline_handler_name, $additional_inline_stype); } /** * Returns all js needed for the front-end * * @since 1.0.0 */ public function theme_js() { $theme_version = defined('WP_DEBUG') && WP_DEBUG ? time() : ENZIAN_THEME_VERSION; $ext = !apply_filters('enzian/use_minify_js_file', true) || ( defined('WP_DEBUG') && WP_DEBUG ) ? '' : '.min'; // Get localized array $localize_array = $this->localize_array(); wp_register_script( 'pace', get_theme_file_uri('/assets/js/lib/pace'.$ext.'.js'), null, $theme_version, true); wp_register_script( 'js-cookie', get_theme_file_uri('/assets/js/lib/js.cookie'.$ext.'.js'), array('jquery'), $theme_version, true); wp_register_script( 'jquery-featherlight', get_theme_file_uri('/assets/js/lib/featherlight'.$ext.'.js') , array('jquery'), $theme_version, true); $dependencies = array( 'jquery', 'js-cookie', 'jquery-featherlight'); if( enzian_string_to_bool( enzian_get_theme_mod('page_preloader') ) ){ $dependencies[] = 'pace'; } if(function_exists('WC')){ $dependencies[] = 'enzian-woocommerce'; } $dependencies = apply_filters('enzian/filter/js_dependencies', $dependencies); wp_enqueue_script('enzian-theme', get_theme_file_uri( '/assets/js/app'.$ext.'.js' ), $dependencies, $theme_version, true); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } if(apply_filters('enzian/filter/force_enqueue_js_external', true)){ wp_localize_script('enzian-theme', 'la_theme_config', $localize_array ); } if(function_exists('la_get_polyfill_inline')){ $polyfill_data = apply_filters('enzian/filter/js_polyfill_data', [ 'enzian-polyfill-object-assign' => [ 'condition' => '\'function\'==typeof Object.assign', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-object-assign'.$ext.'.js' ), 'version' => $theme_version, ], 'enzian-polyfill-css-vars' => [ 'condition' => 'window.CSS && window.CSS.supports && window.CSS.supports(\'(--foo: red)\')', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-css-vars'.$ext.'.js' ), 'version' => $theme_version, ], 'enzian-polyfill-promise' => [ 'condition' => '\'Promise\' in window', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-promise'.$ext.'.js' ), 'version' => $theme_version, ], 'enzian-polyfill-fetch' => [ 'condition' => '\'fetch\' in window', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-fetch'.$ext.'.js' ), 'version' => $theme_version, ], 'enzian-polyfill-object-fit' => [ 'condition' => '\'objectFit\' in document.documentElement.style', 'src' => get_theme_file_uri( '/assets/js/lib/polyfill-object-fit'.$ext.'.js' ), 'version' => $theme_version, ] ]); $polyfill_inline = la_get_polyfill_inline($polyfill_data); if(!empty($polyfill_inline)){ wp_add_inline_script('enzian-theme', $polyfill_inline, 'before'); } } } /** * Functions.js localize array * * @since 1.0.0 */ public function localize_array() { $template_cache = enzian_string_to_bool(enzian_get_option('template_cache')); $array = array( 'security' => array( 'favorite_posts' => wp_create_nonce('favorite_posts'), 'wishlist_nonce' => wp_create_nonce('wishlist_nonce'), 'compare_nonce' => wp_create_nonce('compare_nonce') ), 'single_ajax_add_cart' => enzian_string_to_bool( enzian_get_theme_mod('single_ajax_add_cart') ), 'i18n' => array( 'backtext' => esc_attr_x('Back', 'front-view', 'enzian'), 'compare' => array( 'view' => esc_attr_x('View List Compare', 'front-view', 'enzian'), 'success' => esc_attr_x('has been added to comparison list.', 'front-view', 'enzian'), 'error' => esc_attr_x('An error occurred ,Please try again !', 'front-view', 'enzian') ), 'wishlist' => array( 'view' => esc_attr_x('View List Wishlist', 'front-view', 'enzian'), 'success' => esc_attr_x('has been added to your wishlist.', 'front-view', 'enzian'), 'error' => esc_attr_x('An error occurred, Please try again !', 'front-view', 'enzian') ), 'addcart' => array( 'view' => esc_attr_x('View Cart', 'front-view', 'enzian'), 'success' => esc_attr_x('has been added to your cart', 'front-view', 'enzian'), 'error' => esc_attr_x('An error occurred, Please try again !', 'front-view', 'enzian') ), 'global' => array( 'error' => esc_attr_x('An error occurred ,Please try again !', 'front-view', 'enzian'), 'search_not_found' => esc_attr_x('It seems we can’t find what you’re looking for, please try again !', 'front-view', 'enzian'), 'comment_author' => esc_attr_x('Please enter Name !', 'front-view', 'enzian'), 'comment_email' => esc_attr_x('Please enter Email Address !', 'front-view', 'enzian'), 'comment_rating' => esc_attr_x('Please select a rating !', 'front-view', 'enzian'), 'comment_content' => esc_attr_x('Please enter Comment !', 'front-view', 'enzian'), 'continue_shopping' => esc_attr_x('Continue Shopping', 'front-view', 'enzian'), 'cookie_disabled' => esc_attr_x('We are sorry, but this feature is available only if cookies are enabled on your browser', 'front-view', 'enzian'), 'more_menu' => esc_attr_x('Show More +', 'front-view', 'enzian'), 'less_menu' => esc_attr_x('Show Less', 'front-view', 'enzian'), 'search_view_more' => esc_attr_x('View More', 'front-view', 'enzian'), ) ), 'popup' => array( 'max_width' => esc_attr(enzian_get_option('popup_max_width', 790)), 'max_height' => esc_attr(enzian_get_option('popup_max_height', 430)) ), 'js_path' => esc_attr(apply_filters('enzian/filter/js_path', self::$template_dir_url . '/assets/js/lib/')), 'js_min' => apply_filters('enzian/use_minify_js_file', true), 'theme_path' => esc_attr(apply_filters('enzian/filter/theme_path', self::$template_dir_url . '/')), 'ajax_url' => esc_attr(admin_url('admin-ajax.php')), 'la_extension_available' => get_option('la_extension_available', array( 'swatches' => false, '360' => false, 'content_type' => false )), 'has_wc' => function_exists('WC' ) ? true : false, 'cache_ttl' => apply_filters('enzian/cache_time_to_life', !$template_cache ? 30 : (60 * 5)), 'local_ttl' => apply_filters('enzian/local_cache_time_to_life', !$template_cache ? 30 : (60 * 60 * 24)), 'home_url' => esc_url(home_url('/')), 'current_url' => esc_url( add_query_arg(null,null) ), 'disable_cache' => $template_cache ? false : true, 'is_dev' => defined('WP_DEBUG') && WP_DEBUG ? true : false, 'shop_url' => function_exists('wc_get_page_id') ? get_permalink( wc_get_page_id( 'shop' ) ) : home_url('/'), 'ajaxGlobal' => [ 'nonce' => $this->ajax_manager->create_nonce(), 'action' => 'lastudio_theme_ajax', 'useFront' => 'true', ] ); if(function_exists('la_get_wc_script_data') && function_exists('WC')){ $variation_data = la_get_wc_script_data('wc-add-to-cart-variation'); if(!empty($variation_data)){ $array['i18n']['variation'] = $variation_data; } $array['wc_variation'] = [ 'base' => esc_url(WC()->plugin_url()) . '/assets/js/frontend/add-to-cart-variation.min.js', 'wp_util' => esc_url(includes_url('js/wp-util.min.js')), 'underscore' => esc_url(includes_url('js/underscore.min.js')) ]; } // Apply filters and return array return apply_filters( 'enzian/filter/localize_array', $array ); } /** * Add headers for IE to override IE's Compatibility View Settings * * @since 1.0.0 */ public function x_ua_compatible_headers( $headers ) { $headers['X-UA-Compatible'] = 'IE=edge'; return $headers; } /** * Add support for Elementor Pro locations * * @since 1.0.0 */ public function register_elementor_locations( $elementor_theme_manager ) { $elementor_theme_manager->register_all_core_location(); } /** * Registers sidebars * * @since 1.0.0 */ public function register_sidebars() { $heading = 'div'; $heading = apply_filters( 'enzian/filter/sidebar_heading', $heading ); // Default Sidebar register_sidebar( array( 'name' => esc_html__( 'Default Sidebar', 'enzian' ), 'id' => 'sidebar', 'description' => esc_html__( 'Widgets in this area will be displayed in the left or right sidebar area if you choose the Left or Right Sidebar layout.', 'enzian' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<'. $heading .' class="widget-title"><span>', 'after_title' => '</span></'. $heading .'>', ) ); } public static function enqueue_google_fonts_url(){ $fonts_url = ''; $fonts = array(); if ( 'off' !== _x( 'on', 'Nunito Sans font: on or off', 'enzian' ) ) { $fonts[] = 'Nunito+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700'; } if ( 'off' !== _x( 'on', 'Cormorant font: on or off', 'enzian' ) ) { $fonts[] = 'Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => implode( '&family=', $fonts ), 'display' => 'swap', ), 'https://fonts.googleapis.com/css2' ); } return esc_url_raw( $fonts_url ); } public static function enqueue_typekit_fonts_url(){ $fonts_url = ''; if ( 'off' !== _x( 'on', 'Acumin Pro font: on or off', 'enzian' ) ) { $fonts_url = '//use.typekit.net/ggv4mlu.css'; } return esc_url_raw( $fonts_url ); } public function render_extra_style(){ $this->extra_style .= $this->dynamic_css(); $this->extra_style .= $this->css_page_preload(); } private function css_page_preload(){ ob_start(); include get_parent_theme_file_path('/framework/css/page-preload-css.php'); $content = ob_get_clean(); return $content; } private function dynamic_css(){ ob_start(); include get_parent_theme_file_path('/framework/css/dynamic-css.php'); return ob_get_clean(); } public function register_breakpoint(){ if(defined('ELEMENTOR_VERSION') && class_exists('Elementor\Core\Breakpoints\Manager', false)){ $has_register_breakpoint = get_option('enzian_has_register_breakpoint', false); if(empty($has_register_breakpoint)){ update_option('elementor_experiment-additional_custom_breakpoints', 'active'); $kit_active_id = Elementor\Plugin::$instance->kits_manager->get_active_id(); $raw_kit_settings = get_post_meta( $kit_active_id, '_elementor_page_settings', true ); if(empty($raw_kit_settings)){ $raw_kit_settings = []; } $default_settings = [ 'space_between_widgets' => '0', 'page_title_selector' => 'h1.entry-title', 'stretched_section_container' => '', 'active_breakpoints' => [ 'viewport_mobile', 'viewport_mobile_extra', 'viewport_tablet', 'viewport_laptop', ], 'viewport_mobile' => 767, 'viewport_md' => 768, 'viewport_mobile_extra' => 991, 'viewport_tablet' => 1279, 'viewport_lg' => 1280, 'viewport_laptop' => 1599, 'system_colors' => [ [ '_id' => 'primary', 'title' => esc_html__( 'Primary', 'enzian' ) ], [ '_id' => 'secondary', 'title' => esc_html__( 'Secondary', 'enzian' ) ], [ '_id' => 'text', 'title' => esc_html__( 'Text', 'enzian' ) ], [ '_id' => 'accent', 'title' => esc_html__( 'Accent', 'enzian' ) ] ], 'system_typography' => [ [ '_id' => 'primary', 'title' => esc_html__( 'Primary', 'enzian' ) ], [ '_id' => 'secondary', 'title' => esc_html__( 'Secondary', 'enzian' ) ], [ '_id' => 'text', 'title' => esc_html__( 'Text', 'enzian' ) ], [ '_id' => 'accent', 'title' => esc_html__( 'Accent', 'enzian' ) ] ] ]; $raw_kit_settings = array_merge($raw_kit_settings, $default_settings); update_post_meta( $kit_active_id, '_elementor_page_settings', $raw_kit_settings ); Elementor\Core\Breakpoints\Manager::compile_stylesheet_templates(); update_option('enzian_has_register_breakpoint', true); } } } } } new Enzian_Theme_Class();{"id":6587,"date":"2024-10-09T14:05:05","date_gmt":"2024-10-09T14:05:05","guid":{"rendered":"https:\/\/14digitalapps.co.uk\/avloneurope6\/?page_id=6587"},"modified":"2024-12-27T14:11:25","modified_gmt":"2024-12-27T14:11:25","slug":"book","status":"publish","type":"page","link":"https:\/\/14digitalapps.co.uk\/avloneurope6\/?page_id=6587","title":{"rendered":"Book"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"6587\" class=\"elementor elementor-6587\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e4f9d31 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"e4f9d31\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7228ce8 elementor-widget elementor-widget-slider_revolution\" data-id=\"7228ce8\" data-element_type=\"widget\" data-widget_type=\"slider_revolution.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\n\t\t<div class=\"wp-block-themepunch-revslider\">\n\t\t\t\t<p class=\"rs-p-wp-fix\"><\/p>\n\t\t\t\t<sr7-module data-alias=\"legal-policy-1\" data-id=\"27\" id=\"SR7_27_1\" class=\"rs-ov-hidden\" data-version=\"6.7.13\">\n\t\t\t\t\t<sr7-adjuster><\/sr7-adjuster>\n\t\t\t\t\t<sr7-content>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_27_1-70\" data-key=\"70\">\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_27_1-71\" data-key=\"71\">\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t<\/sr7-content>\n\t\t\t\t\t<image_lists style=\"display:none\">\n\t\t\t\t\t\t<img data-src=\"\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/11\/Book.jpg\" data-libid=\"7912\" data-lib=\"medialibrary\" title=\"Book\" width=\"0\" height=\"0\" data-dbsrc=\"Ly8xNGRpZ2l0YWxhcHBzLmNvLnVrL2F2bG9uZXVyb3BlNi93cC1jb250ZW50L3VwbG9hZHMvMjAyNC8xMS9Cb29rLmpwZw==\"\/>\n\t\t\t\t\t<\/image_lists>\n\t\t\t\t<\/sr7-module>\n\t\t\t\t<script>\n\t\t\t\t\tSR7.PMH ??={}; SR7.PMH[\"SR7_27_1\"] = {cn:0,state:false,fn: function() { if (_tpt!==undefined && _tpt.prepareModuleHeight !== undefined) { _tpt.prepareModuleHeight({id:\"SR7_27_1\",el:[540,540,768,960,209],type:'standard',shdw:'0',gh:[540,540,288,219,135],gw:[1920,1920,1024,778,480],vpt:['100px'],size:{fullWidth:true, fullHeight:false},mh:'0',onh:0,onw:0,bg:{color:'{\"orig\":\"transparent\",\"type\":\"solid\",\"string\":\"transparent\"}'}}); SR7.PMH[\"SR7_27_1\"].state=true;} else if((SR7.PMH[\"SR7_27_1\"].cn++)<100)\tsetTimeout( SR7.PMH[\"SR7_27_1\"].fn,19);}};SR7.PMH[\"SR7_27_1\" ].fn();\n\t\t\t\t<\/script>\n<\/div>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-33b7690 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"33b7690\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1bd945a elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1bd945a\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":200}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.23.0 - 05-08-2024 *\/\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\/style><div class=\"elementor-heading-title elementor-size-default\">Overview<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a36b4c0 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"a36b4c0\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"elementor-heading-title elementor-size-default\">ACKNOWLEDGEMENTS<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-737646d e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"737646d\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7911664 elementor-widget elementor-widget-text-editor\" data-id=\"7911664\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.23.0 - 05-08-2024 *\/\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}<\/style>\t\t\t\t<p>Writing this book was an extraordinary exercise in sharing the knowledge that I have acquired regarding the African-descent hair and scalp. During this journey of learning the science of the hair and scalp, and in particular the science of the African-descent hair and scalp, many people have contributed to my knowledge over the years. I must acknowledge the African-American, African-European, and Brazilian hairstylists who persuaded me to think more about all textures of hair around the world.<\/p><p>During my lectures to hairstylists in general, the questions posed were always instrumental in refining my understanding about textured hair. I also want to acknowledge independent African-American distributors in the United States for their support, collaboration, and furtherance of my career, not just as a chemist but also as an entrepreneur.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-fe748db elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"fe748db\" data-element_type=\"section\" data-settings=\"{"background_background":"classic","background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_devices":["desktop","laptop","tablet","mobile_extra","mobile"]}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7187354 lakit-col-width-auto-no\" data-id=\"7187354\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-edffe6c elementor-widget elementor-widget-spacer\" data-id=\"edffe6c\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.23.0 - 05-08-2024 *\/\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}<\/style>\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f67190d elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"f67190d\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"elementor-heading-title elementor-size-default\">ABOUT THE AUTHOR<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bcf1b68 elementor-widget elementor-widget-text-editor\" data-id=\"bcf1b68\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>Dr. Ali N. Syed, a renowned expert in hair care formulation, boasts an impressive career spanning decades. With over 45 patents, numerous scientific publications, and three book publications to his name, Dr. Syed’s expertise is unmatched.<\/p><p>He founded Avlon in 1984 and as I Am in 2011, leveraging his innovative strategies and profound understanding of chemistry to revolutionize the industry. Dr. Syed’s commitment to excellence is<br \/>evident in his hands-on approach, personally overseeing every project at Avlon’s Research &amp; Development Center.<\/p><p>His collaborative spirit extends to professional hairstylists, whom he considers integral partners in Avlon’s success.<\/p><p>Embracing creativity and continuous improvement, Dr. Syed’s contributions to the field are widely recognized, as evidenced by his publications, guest lectures, and esteemed speaking engagements worldwide.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ca9069d lakit-col-width-auto-no\" data-id=\"ca9069d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e7bd256 elementor-widget elementor-widget-image\" data-id=\"e7bd256\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"603\" height=\"731\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/Image.png\" class=\"attachment-full size-full wp-image-6834\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-97637a8 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"97637a8\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cd6f7f5 elementor-widget elementor-widget-image\" data-id=\"cd6f7f5\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/curly-hair-by-dr-ali-n-syed\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1920\" height=\"616\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/Order-Now.png\" class=\"attachment-large size-large wp-image-6854\" alt=\"\" srcset=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/Order-Now.png 1920w, https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/Order-Now-1536x493.png 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cac7d91 e-con-full e-flex lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"cac7d91\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0d42e74 elementor-widget elementor-widget-image\" data-id=\"0d42e74\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"652\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/09\/about-us-footer.png\" class=\"attachment-large size-large wp-image-6508\" alt=\"\" srcset=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/09\/about-us-footer.png 1920w, https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/09\/about-us-footer-1536x522.png 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d796e00 e-con-full e-flex lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"d796e00\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4789318 elementor-widget__width-inherit elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"4789318\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":300}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"elementor-heading-title elementor-size-default\">FEATURED IN<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d9e5a3e e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"d9e5a3e\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-15b7d80 elementor-widget__width-inherit elementor-widget elementor-widget-image\" data-id=\"15b7d80\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"558\" height=\"428\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/BookTrib.png\" class=\"attachment-full size-full wp-image-6827\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-74a38e7 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"74a38e7\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e143704 lakit-arrow--showonhover-no lakit-dots--vertical-no elementor-widget lastudio-kit elementor-lakit-testimonials\" data-id=\"e143704\" data-element_type=\"widget\" data-widget_type=\"lakit-testimonials.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<link rel=\"stylesheet\" href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/plugins\/lastudio-element-kit\/assets\/css\/addons\/testimonials.min.css\">\n<div id=\"tt_e143704\" class=\"lakit-testimonials lakit-ttmna preset-type-4 pstype-4 lakit-carousel\" data-slider_options=\"{"slidesToScroll":{"desktop":"1","laptop":"1","tablet":"1","mobile_extra":"1"},"rows":{"desktop":"1","laptop":"1","tablet":"1","mobile_extra":"1"},"autoplaySpeed":5000,"autoplay":true,"infinite":true,"centerMode":false,"pauseOnHover":false,"pauseOnInteraction":false,"reverseDirection":false,"infiniteEffect":false,"speed":500,"arrows":true,"dots":false,"variableWidth":false,"prevArrow":".lakit-carousel__prev-arrow-e143704","nextArrow":".lakit-carousel__next-arrow-e143704","dotsElm":".lakit-carousel__dots_e143704","rtl":false,"effect":"slide","coverflowEffect":{"rotate":null,"stretch":null,"depth":null,"modifier":null,"scale":null},"dotType":"bullets","direction":"horizontal","uniqueID":"lakit_carousel_e143704","asFor":"","thumbs":"","autoHeight":false,"scrollbar":false,"slidesToShow":{"desktop":"1","laptop":"1","tablet":"1","mobile_extra":"1"}}\" dir=\"ltr\">\n <div class=\"lakit-carousel-inner\"> <div class=\"lakit-testimonials__list_wrapper swiper-container\" id=\"lakit_carousel_e143704\">\n <div class=\"lakit-testimonials__list swiper-wrapper\" data-item_selector=\".lakit-testimonials__item\">\n <div class=\"lakit-testimonials__item lakit-ttm__i elementor-repeater-item-0896ca9 swiper-slide\">\n \t<div class=\"lakit-testimonials__item-inner lakit-ttm__inner\">\n \t\t<div class=\"lakit-testimonials__content lakit-ttm__cont\"><div class=\"lakit-testimonials__figure lakit-ttm__fig\"><span class=\"lakit-testimonials__tag-img lakit-ttm__img\"><span style=\"background-image: url('https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/1.png')\"><\/span><\/span><\/div><div class=\"lakit-testimonials__comment lakit-ttm__com\"><div><p>\u201cI applaud Dr. Syed for his openness and his gift of knowledge. I learned a lot from this text! It is a comprehensive treatment of the subject, with abundant educational gems to inspire the reader. I recommend his book on curly hair to anyone and everyone with an interest in the subject. Like me, you will learn from this book.\u201d\u00a0<\/p><p>-<\/p><p>Professor and Director Emeritus, The School of Polymers & High Performance Materials, University of Southern Mississippi\u00a0<\/p><\/div><\/div><div class=\"lakit-testimonials__name lakit-ttm__n\"><span>Robert Y. Lochhead<\/span><\/div><div class=\"lakit-testimonials__rating\"><span class=\"star-rating\"><span style=\"width: 100%\"><\/span><\/span><\/div><\/div>\n\t<\/div>\n<\/div><div class=\"lakit-testimonials__item lakit-ttm__i elementor-repeater-item-e4cd3da swiper-slide\">\n \t<div class=\"lakit-testimonials__item-inner lakit-ttm__inner\">\n \t\t<div class=\"lakit-testimonials__content lakit-ttm__cont\"><div class=\"lakit-testimonials__figure lakit-ttm__fig\"><span class=\"lakit-testimonials__tag-img lakit-ttm__img\"><span style=\"background-image: url('https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/2.png')\"><\/span><\/span><\/div><div class=\"lakit-testimonials__comment lakit-ttm__com\"><div><p>\u201cThe first learner-friendly book to provide an in-depth perspective on all hair types in addition to practical approaches to combat hair loss, issues with hair growth, scalp and skin-related challenges. An excellent reference for academic researchers, and a valuable source for dermatologists, cosmetologists, hair stylists, hair colorists, and hair care product formulators.\u201d\u00a0<\/p><p>-<\/p><p>Visiting Professor, Chemistry Department, Walsh University\u00a0<\/p><p>-<\/p><p>Senior Fellow (Ret\u2019d), Lubrizol Advanced Materials, Inc.\u00a0<\/p><\/div><\/div><div class=\"lakit-testimonials__name lakit-ttm__n\"><span>Zahid Amjad, PhD<\/span><\/div><div class=\"lakit-testimonials__rating\"><span class=\"star-rating\"><span style=\"width: 100%\"><\/span><\/span><\/div><\/div>\n\t<\/div>\n<\/div><div class=\"lakit-testimonials__item lakit-ttm__i elementor-repeater-item-89167c3 swiper-slide\">\n \t<div class=\"lakit-testimonials__item-inner lakit-ttm__inner\">\n \t\t<div class=\"lakit-testimonials__content lakit-ttm__cont\"><div class=\"lakit-testimonials__figure lakit-ttm__fig\"><span class=\"lakit-testimonials__tag-img lakit-ttm__img\"><span style=\"background-image: url('https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/3.png')\"><\/span><\/span><\/div><div class=\"lakit-testimonials__comment lakit-ttm__com\"><div><p>\u201cThis book is a must-have reference source for anyone serious about hair structure and treatment science. The information is presented in a clear and astute manner, making it useful not only to the newcomer to the topic but also to the most experienced formulator.\u201d\u00a0<\/p><p>-<\/p><p>President, Society of Cosmetic Chemists, 2015\u00a0<\/p><p>-<\/p><p>Education Chair, International Federation of Society of Cosmetic Chemists, 2016 - 2019<\/p><\/div><\/div><div class=\"lakit-testimonials__name lakit-ttm__n\"><span>Tony O\u2019Lenick<\/span><\/div><div class=\"lakit-testimonials__rating\"><span class=\"star-rating\"><span style=\"width: 100%\"><\/span><\/span><\/div><\/div>\n\t<\/div>\n<\/div> <\/div>\n <\/div>\n <\/div><div class=\"lakit-carousel__prev-arrow-e143704 lakit-arrow prev-arrow\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" xml:space=\"preserve\"><image width=\"40\" height=\"40\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM\/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3VpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw\/eHBhY2tldCBiZWdpbj0i77u\/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ2MCwgMjAyMC8wNS8xMi0xNjowNDoxNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjZTkzMmQwYy1mNTgxLTQ5NWUtYmI3Yy0wMThjNTVjOTQ0NGYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTI1NDI2NDM0REM3MTFFRjlERDlFNDQ4RTIxRTZDQkUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTI1NDI2NDI0REM3MTFFRjlERDlFNDQ4RTIxRTZDQkUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjIgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpkMzEyNDZmYy1hMmEyLTQzMWEtYTU1NC0xYzVhZThiMzBiNTUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Y2U5MzJkMGMtZjU4MS00OTVlLWJiN2MtMDE4YzU1Yzk0NDRmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VRMlpgAAAwJJREFUeNrUmV9IU3EUx8\/mzYfKl7YEaRXOygohxaSwP5I9FWb0FMt6C+YqB5FBTwbZQ72ElLEp0lPl0jKwoof+KAgRlkEk0UQfrGRECYFlNm3rnO1cGHbd3O7ZdvvCB8YuO7\/vzu93f\/f8zjWFvn+FFGRGKpA9yFZkA7IKWcbXfyITyAjyGulDXiGhZAcyJWnQhpxE6pDVSY71CbmFXEc+Sxu0IBeQ40gu6FMQ6UCakEkJg4eRVsQKsvrGs9GVaC0tJAXxIL40mAOOeYfHUJLN4FL+cQ1kRg95pqYXk0H6N50ZNAc8VqdWJrUM0nqrhcyrlseOa9CBOCF7cvJUa67BlcgHZAVkV3R3b1S3oNgMNhvAnHp3X5yfwTXIKLIEjKFZZB3yUc2gy0DmgL241AySyXF+zhpJ9Lxeq1YloubueofBtbdHbxjyVKFwySSiEBZTPe3D8LTLD\/m2PImQ1QrXcyK61\/YOnnWPQOFmK7gvVUqELCeDxRKRuj1Rc\/YSK5y5shtyFJNE2GIyWKA3iu\/aW+i\/Pwrrt+TDiebtUuZIBWRQ12K5eu4FvB8MQFmVDZznt0nfyXlmvRF+\/5qLbly5OWnZa8jglJ4AjS1VULmvEAafjEeyOTM9J+lvigwG9EQwmcJwrLEcduy3R6ba0\/QSwmGxNRggg369UaImy2BnjR38b75Ay9kBCM78kTDoN\/O5VUQOdynsOlAUMXm5oV8i5JDCh2oR0fZSd7o08nngwZhEyL7\/oligdsRNMJ7IU0gtWCl7YwJdAylR96GIsmiOSecNA2WvQ+3fxB6aLLzlWLJsbpILmH8OTfSF2wDZOxXbVJr\/LL6NtGfRXBv3guJ2FhqQ3iyY69WaQfMCdxB1GB5l0NxjHjO4GIMk6jId4pRnYloPgkZnK55B9fBcjxzhdkQ6WhwOHmM2Xj2YSNQW24R4taYgxU3YyzF9CSulFJrotA0chWhXPxlN8OOrFdLQRNfKPB34q+loCNHXEGR+OV\/\/wSboNcQQ8hxSfA3xV4ABAFQy06mwu3P5AAAAAElFTkSuQmCC\"><\/image><\/svg><\/div><div class=\"lakit-carousel__next-arrow-e143704 lakit-arrow next-arrow\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" xml:space=\"preserve\"><image width=\"40\" height=\"40\" xlink:href=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM\/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3VpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw\/eHBhY2tldCBiZWdpbj0i77u\/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ2MCwgMjAyMC8wNS8xMi0xNjowNDoxNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjZTkzMmQwYy1mNTgxLTQ5NWUtYmI3Yy0wMThjNTVjOTQ0NGYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUZDQkE0OEM0REM3MTFFRjlERDlFNDQ4RTIxRTZDQkUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUZDQkE0OEI0REM3MTFFRjlERDlFNDQ4RTIxRTZDQkUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjIgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpkMzEyNDZmYy1hMmEyLTQzMWEtYTU1NC0xYzVhZThiMzBiNTUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Y2U5MzJkMGMtZjU4MS00OTVlLWJiN2MtMDE4YzU1Yzk0NDRmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Ng7CnQAAAwtJREFUeNrMmV1Ik2EUx49rOebHtDZBzfSi2gqCoNydkXYTQSgR9GF1J6WU2oXSXUF5kxIlrTKRrqrZbqQouvMDL7rIj4tunGiS6US2xdKZtdXqnHUGNjb38Tzb3j\/89GJyzv85797nec4xK+BxQhJSIWakBqlEjMgOJJc\/X0MWkWlkDBlCPiCBRBNlJWiwDLmCnEd2JpjrC\/IceYgsyDaoR24hDUg2iMmH9CE3ELcMg6d51QaQKxdyFXkZ67sUTWrkMQeQbQ44Zj\/nUCdawRw2dgLSozfIGeR7PBWk1VjTaA44lzVSJSMZtCC1kH7Vcu5NDVKZL0PmRLnPRfsO0lYylaIXIhF9RfYizvAKdijAHGk7cju8guXIDLIVlCE\/shuZD1WwSUHmgL00hSpIJj\/zOask0XldoeZbiZC5jkuD+PMPtHZWQX6hRpZB8mSm6h0VjVSxpxAWZjzQ2TIC616\/zCrWkMFDolEuth+Euob94HZ4oat1BDyuH7IMVpJBk4xIx+tNQZOOuW9wr20U1lZ8MsKayGCJrOUeO2uEU40HYHl+Be40D4PHuS4asoTe4p8SLqH\/aWLUAb0330NugQbuDgjdOXyqlGxi2VuCv3\/5fwvHom1mlc9hKRp+NQe2B5NgKM3DbeewaLhVquCSTHP93RNQYNDCdUs1FJXmiIZcIoN2GeYGBz6BzTIJRWX50Ha\/WtaGbSeD46JRbI8+Bh+rTq+F9u4joC\/WynooY2puqoU0Nb4MxeU6uNZVBbptGpnv25DiLwsqHkc8A+WJPAVCF1aq3qzsDVtw+rCLqqjaUM4+BVXvaWh+E9402WVu2knKzRcYd3jT5OZZSabVsnGoFH4W06zkSQbN9SIvYk0WaAWvM2COcjbHM\/rwcXf\/Lo3m3nJOXzwGgadMdWl63JTjJESYbG1mMNQ8N\/LKXCkwRjHrOUfUTiueCyu9OPuQnkiPIMlNuIdjWmP9cTJDdNqKLsC\/qX4iWuTjywIpGKJHqryZe2pqW41sPo8\/97KJab7OUWef1L8h\/gowAOJz2eIJuAMGAAAAAElFTkSuQmCC\"><\/image><\/svg><\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-11bffe15 elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"11bffe15\" data-element_type=\"section\" data-settings=\"{"background_background":"classic"}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-244224f lakit-col-width-auto-no\" data-id=\"244224f\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2088d208 elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"2088d208\" data-element_type=\"section\" data-settings=\"{"background_background":"classic"}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-eed6bc4 lakit-col-width-auto-no\" data-id=\"eed6bc4\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-198a541f elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"198a541f\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":200}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Leave email to get 30% OFF<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4567095e elementor-invisible elementor-widget lastudio-kit elementor-lakit-subscribe-form\" data-id=\"4567095e\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":400}\" data-widget_type=\"lakit-subscribe-form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>.lakit-subscribe-form,.lakit-subscribe-form__submit{position:relative;max-width:100%}.lakit-subscribe-form__fields{display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:stretch}.lakit-subscribe-form__submit{display:flex;justify-content:center;align-items:center;flex:0 1 auto}.lakit-subscribe-form__submit span{vertical-align:middle;display:inline-block}.lakit-subscribe-form__submit:before{box-sizing:border-box;position:absolute;visibility:hidden;top:50%;left:50%;width:26px;height:26px;margin-top:-13px;margin-left:-13px;border-radius:50%;border:3px solid #fff;border-top-color:#000;content:\"\";animation:.6s linear infinite lakit-spinner}.lakit-subscribe-form__submit.loading i,.lakit-subscribe-form__submit.loading span{visibility:hidden}.lakit-subscribe-form__submit.loading:before{visibility:visible}.lakit-subscribe-form__message{position:absolute;top:100%;width:100%;visibility:hidden;color:#4ab866;font-size:14px}.lakit-subscribe-form__message .lakit-subscribe-form__message-inner{display:flex;justify-content:center;align-items:center;text-align:center}.lakit-subscribe-form .elementor-icon{color:inherit}.lakit-subscribe-form--response-error .lakit-subscribe-form__message{color:#d94f4f}.lakit-subscribe-form--inline-layout .lakit-subscribe-form__input-group{display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start}.lakit-subscribe-form--inline-layout .lakit-subscribe-form__input-group .lakit-subscribe-form__fields{flex:1 1 auto;width:100px}.lakit-subscribe-form--inline-layout .lakit-subscribe-form__input-group .lakit-subscribe-form__submit{flex:0 1 auto;width:auto}.lakit-subscribe-form--block-layout .lakit-subscribe-form__input-group{display:flex;flex-flow:column wrap;justify-content:flex-start;align-items:center}.lakit-subscribe-form--block-layout .lakit-subscribe-form__input-group .lakit-subscribe-form__fields{width:100%}<\/style><div class=\"lakit-subscribe-form lakit-subscribe-form--inline-layout\" data-settings=\"{"redirect":false,"redirect_url":"#","use_target_list_id":false,"target_list_id":""}\">\n\t<form method=\"POST\" action=\"#\" class=\"lakit-subscribe-form__form\">\n\t\t<div class=\"lakit-subscribe-form__input-group\">\n\t\t\t<div class=\"lakit-subscribe-form__fields\">\n\t\t\t\t<input class=\"lakit-subscribe-form__input lakit-subscribe-form__mail-field\" type=\"email\" name=\"email\" placeholder=\"Your Email\" autocomplete=\"email\" data-instance-data=\"[]\"\/><\/div>\n <a class=\"lakit-subscribe-form__submit elementor-button elementor-size-md\" href=\"#\"><span class=\"lakit-subscribe-form__submit-text\">Subscribe<\/span><\/a>\n\t\t<\/div>\n\t\t<div class=\"lakit-subscribe-form__message\"><div class=\"lakit-subscribe-form__message-inner\"><span><\/span><\/div><\/div>\n\t<\/form>\n<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Overview ACKNOWLEDGEMENTS Writing this book was an extraordinary exercise in sharing the knowledge that I have acquired regarding the African-descent hair and scalp. During this journey of learning the science of the hair and scalp, and in particular the science of the African-descent hair and scalp, many people have contributed to my knowledge over the […]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-6587","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/6587","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6587"}],"version-history":[{"count":73,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/6587\/revisions"}],"predecessor-version":[{"id":8929,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/6587\/revisions\/8929"}],"wp:attachment":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6587"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}