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":5303,"date":"2024-09-02T04:16:55","date_gmt":"2024-09-02T04:16:55","guid":{"rendered":"https:\/\/14digitalapps.co.uk\/avloneurope6\/?page_id=5303"},"modified":"2024-12-27T14:19:10","modified_gmt":"2024-12-27T14:19:10","slug":"texture-release","status":"publish","type":"page","link":"https:\/\/14digitalapps.co.uk\/avloneurope6\/?page_id=5303","title":{"rendered":"Texture Release"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"5303\" class=\"elementor elementor-5303\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ff7f316 e-con-full e-flex lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"ff7f316\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a3aba8d elementor-widget elementor-widget-slider_revolution\" data-id=\"a3aba8d\" 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=\"affirm-care-1\" data-id=\"12\" id=\"SR7_12_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_12_1-38\" data-key=\"38\">\n\t\t\t\t\t\t\t<sr7-txt id=\"SR7_12_1-38-1\" class=\"sr7-layer\">TEXTURE RELEASE<\/sr7-txt>\n\t\t\t\t\t\t<\/sr7-slide>\n\t\t\t\t\t\t<sr7-slide id=\"SR7_12_1-39\" data-key=\"39\">\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\/09\/1920-x-540-4.jpg\" data-libid=\"5712\" data-lib=\"medialibrary\" title=\"1920-x-540\" width=\"0\" height=\"0\" data-dbsrc=\"Ly8xNGRpZ2l0YWxhcHBzLmNvLnVrL2F2bG9uZXVyb3BlNi93cC1jb250ZW50L3VwbG9hZHMvMjAyNC8wOS8xOTIwLXgtNTQwLTQuanBn\"\/>\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_12_1\"] = {cn:0,state:false,fn: function() { if (_tpt!==undefined && _tpt.prepareModuleHeight !== undefined) { _tpt.prepareModuleHeight({id:\"SR7_12_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_12_1\"].state=true;} else if((SR7.PMH[\"SR7_12_1\"].cn++)<100)\tsetTimeout( SR7.PMH[\"SR7_12_1\"].fn,19);}};SR7.PMH[\"SR7_12_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<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-51eb0f5 elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"51eb0f5\" data-element_type=\"section\">\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-1079a2e lakit-col-width-auto-no\" data-id=\"1079a2e\" 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-40816c0 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"40816c0\" data-element_type=\"widget\" data-settings=\"{"_animation":"lakitShortFadeInUp","_animation_delay":300}\" 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\tOur Texture Release\u2122 System is heat-activated system made from amino acids and conditioning agents which go deep into the hair fibres to enable styling versatility.\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\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-207fcfc elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"207fcfc\" 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-79b8ebb lakit-col-width-auto-no\" data-id=\"79b8ebb\" 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-a288c1f elementor-widget elementor-widget-spacer\" data-id=\"a288c1f\" 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-c22d1e3 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"c22d1e3\" 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<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\">TEXTURE RELEASE<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f592267 elementor-widget elementor-widget-text-editor\" data-id=\"f592267\" 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>The system is ideal for the client who requires temporary textural change for increased combing manageability.<\/p><p>Texture Release\u2122 underwent a revamp recently, with a reformulated system utilising the latest cutting-edge technology that is proving to be highly transformative for the consumer, proving that style versatility can be achieved without altering or compromising the structure of the hair.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7bf7772 elementor-widget elementor-widget-button\" data-id=\"7bf7772\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/contact-us\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">CONTACT US<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t<\/div>\n\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-c7435a1 lakit-col-width-auto-no\" data-id=\"c7435a1\" 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-a69feeb elementor-widget elementor-widget-image\" data-id=\"a69feeb\" 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=\"662\" height=\"485\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/09\/Texture-Release.png\" class=\"attachment-full size-full wp-image-5310\" 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\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-52c6a3ca elementor-section-full_width elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"52c6a3ca\" 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-61b35fe4 lakit-col-width-auto-no\" data-id=\"61b35fe4\" 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-5d77fc00 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5d77fc00\" 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\">TEXTURE RELEASE PRODUCTS<\/div>\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-52d30b3 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"52d30b3\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-65d6fdd4 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"65d6fdd4\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-de2e025 lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"de2e025\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>.lakit-imagebox.floating-style .lakit-imagebox__body,.lakit-imagebox.style-modern .lakit-imagebox__body{border-radius:10px;box-shadow:-1.216px 6.894px 25px 0 rgba(0,0,0,.07);margin-left:auto;margin-right:auto}.lakit-imagebox__title_icon svg,.lakit-imagebox__top_icon_inner svg{width:1em;height:1em}.lakit-imagebox{transition:.4s;--lakit-imagebox-icon-spacing:10px;--lakit-imagebox-icon-vspacing:0}.lakit-imagebox>a{text-decoration:none;outline:0}.lakit-imagebox__header{transition:.4s;position:relative;overflow:hidden}.lakit-imagebox__header img{display:block;transition:.4s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.lakit-imagebox__title_icon,.lakit-imagebox__title_icon i,.lakit-imagebox__title_icon svg,.lakit-imagebox__title_text,.lakit-imagebox__top_icon_inner,.lakit-imagebox__top_icon_inner svg{vertical-align:middle;display:inline-block}.lakit-imagebox__content-align-center{text-align:center}.lakit-imagebox__content-align-center img{margin:0 auto}.lakit-imagebox__content-align-left{text-align:left}.lakit-imagebox__content-align-left img{margin-right:auto}.lakit-imagebox__content-align-right{text-align:right}.lakit-imagebox.text-right .lakit-imagebox__header,.lakit-imagebox__content-align-right img{margin-left:auto}.lakit-imagebox__body{padding:2rem;position:relative}.lakit-imagebox__button_wrapper{line-height:1;margin-top:20px}.lakit-imagebox__desc,.lakit-imagebox__title{margin:0 0 1rem;transition:.4s}.lakit-imagebox__title{font-size:1.5rem}.lakit-imagebox__title a{color:inherit;line-height:inherit;text-decoration:inherit}.lakit-imagebox__title_text+.lakit-imagebox__title_icon{padding-left:var(--lakit-imagebox-icon-spacing);padding-right:0}.lakit-imagebox__title_icon{padding-right:var(--lakit-imagebox-icon-spacing);transform:translateY(var(--lakit-imagebox-icon-vspacing))}.lakit-imagebox.hover-border-bottom .lakit-imagebox__body,.lakit-imagebox.shadow-line .lakit-imagebox__body{position:relative}.lakit-imagebox.hover-border-bottom .lakit-imagebox__body:before{position:absolute;content:\"\";bottom:-1px;left:0;height:3px;width:100%;background-color:var(--lakit-primary-color);transition:transform 250ms ease-in;transform:scaleX(0);transform-origin:0 50%}.lakit-imagebox.hover-border-bottom.hover_from_left .lakit-imagebox__body{transform-origin:right center}.lakit-imagebox.hover-border-bottom.hover_from_center .lakit-imagebox__body{transform-origin:center center}.lakit-imagebox.hover-border-bottom:hover .lakit-imagebox__body:before{transform:scaleX(1);transform-origin:100% 50%}.lakit-imagebox.hover-border-bottom:hover.hover_from_left .lakit-imagebox__body{transform-origin:left center}.lakit-imagebox.hover-border-bottom:hover.hover_from_center .lakit-imagebox__body{transform-origin:center center}.lakit-imagebox.style-modern{overflow:inherit}.lakit-imagebox.style-modern .lakit-imagebox__body{background-color:rgba(255,255,255,.9);width:calc(100% - 40px);padding:30px 40px;position:relative;z-index:2;margin-top:-20px}.lakit-imagebox.floating-style .lakit-imagebox__body{background-color:#fff;width:calc(100% - 40px);position:relative;padding:30px 35px;transition:.4s;height:90px;margin-top:-40px}.lakit-imagebox.floating-style .lakit-imagebox__body:after{bottom:-20px;width:calc(100% - 40px);z-index:-2}.lakit-imagebox.floating-style .lakit-iconbox__button_wrapper,.lakit-imagebox.floating-style .lakit-imagebox__desc{opacity:0;transition:.4s ease-in-out}.lakit-imagebox.floating-style:hover .lakit-imagebox__body{height:220px}.lakit-imagebox.floating-style:hover .lakit-iconbox__button_wrapper,.lakit-imagebox.floating-style:hover .lakit-imagebox__body:after,.lakit-imagebox.floating-style:hover .lakit-imagebox__body:before,.lakit-imagebox.floating-style:hover .lakit-imagebox__desc{opacity:1}.lakit-imagebox.style-sideline .lakit-imagebox__body{padding-left:0;padding-right:0}.lakit-imagebox.style-sideline .lakit-imagebox__body_inner{padding-left:40px;padding-right:40px;border-style:solid;border-color:var(--lakit-primary-color);border-top-width:0!important;border-bottom-width:0!important;transition:border-color .3s}.lakit-imagebox.style-sideline.lakit-imagebox__content-align-right .lakit-imagebox__body_inner,.rtl .lakit-imagebox.style-sideline.lakit-imagebox__content-align-center .lakit-imagebox__body_inner{border-left-width:0!important}.lakit-imagebox.style-sideline.lakit-imagebox__content-align-left .lakit-imagebox__body_inner,.ltr .lakit-imagebox.style-sideline.lakit-imagebox__content-align-center .lakit-imagebox__body_inner{border-right-width:0!important}.lakit-imagebox.style-sideline .lakit-iconbox__button_wrapper{padding-left:40px;padding-right:40px}.lakit-imagebox.shadow-line .lakit-imagebox__body:after,.lakit-imagebox.shadow-line .lakit-imagebox__body:before{position:absolute;content:\"\";left:0;bottom:0;height:100%;background-color:#fff;width:10px;box-shadow:-1.216px 6.894px 15px 0 rgba(0,0,0,.07)}.lakit-imagebox.shadow-line .lakit-imagebox__body:after{left:inherit;right:0;height:calc(100% + 40px)}.lakit-imagebox__top_icon_inner{font-size:3em;text-align:center;transition:.3s}.lakit-imagebox__header:before{content:'';position:absolute;z-index:1;transition:.5s}.lakit-imagebox.text-center .lakit-imagebox__header{margin-left:auto;margin-right:auto}<\/style><div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-curl-shape-shine-cream\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/11-1.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-7289\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-curl-shape-shine-cream\/\"><span class=\"lakit-imagebox__title_text\">TEXTURE RELEASE CURL SHAPE & SHINE CREAM<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-curl-shape-shine-cream\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/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-4ee741e e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"4ee741e\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5b8fa33f lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"5b8fa33f\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-scalp-rejuvenating-moisturising-conditioner\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/22.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-7290\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-scalp-rejuvenating-moisturising-conditioner\/\"><span class=\"lakit-imagebox__title_text\">TEXTURE RELEASE SCALP REJUVENATING & MOISTURISING CONDITIONER<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-scalp-rejuvenating-moisturising-conditioner\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/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-279fa262 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"279fa262\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6c14b5f6 lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"6c14b5f6\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-scalp-rejuvenating-sulfate-free-shampoo\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/33.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-7291\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-scalp-rejuvenating-sulfate-free-shampoo\/\"><span class=\"lakit-imagebox__title_text\">TEXTURE RELEASE SCALP REJUVENATING SULFATE-FREE SHAMPOO<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-scalp-rejuvenating-sulfate-free-shampoo\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\t\t<\/div>\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-3d37ccd8 e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"3d37ccd8\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-609fbd8a e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"609fbd8a\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-69a70bd9 lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"69a70bd9\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-thermal-protector\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/44.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-7292\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-thermal-protector\/\"><span class=\"lakit-imagebox__title_text\">TEXTURE RELEASE THERMAL PROTECTOR<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-thermal-protector\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/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-6cd389dc e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"6cd389dc\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1716f4c lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"1716f4c\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-release-lotion\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/55.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-7293\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-release-lotion\/\"><span class=\"lakit-imagebox__title_text\">TEXTURE RELEASE RELEASE LOTION<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-release-lotion\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/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-3bb7f61e e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3bb7f61e\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e3a6a92 lakit-equal-height-disable elementor-invisible elementor-widget lastudio-kit elementor-lakit-image-box\" data-id=\"e3a6a92\" data-element_type=\"widget\" data-settings=\"{"_animation":"zoomIn"}\" data-widget_type=\"lakit-image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"lakit-imagebox text-center lakit-imagebox__content-align-center hover-border-bottom hover_from_right\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-hair-dilator\/\"><div class=\"lakit-imagebox__header figure__object_fit\"><img loading=\"lazy\" decoding=\"async\" width=\"1182\" height=\"800\" src=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/wp-content\/uploads\/2024\/10\/77.jpg\" class=\"lakit-imagebox__main_img attachment-full size-full wp-image-7294\" alt=\"\" \/><\/div><\/a><div class=\"lakit-imagebox__body\"><div class=\"lakit-imagebox__body_inner\"><h3 class=\"lakit-imagebox__title\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-hair-dilator\/\"><span class=\"lakit-imagebox__title_text\">TEXTURE RELEASE HAIR DILATOR<\/span><\/a><\/h3><\/div><div class=\"lakit-iconbox__button_wrapper\"><a href=\"https:\/\/14digitalapps.co.uk\/avloneurope6\/product\/texture-release-hair-dilator\/\" class=\"elementor-button-link elementor-button elementor-btn-align-icon-\"><span class=\"elementor-button-content-wrapper e-icon-align-\"><span class=\"elementor-button-text\">READ MORE<\/span><\/span><\/a><\/div><\/div><\/div>\t\t<\/div>\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\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-76f664cc elementor-section-boxed elementor-section-height-default elementor-section-height-default e-parent\" data-id=\"76f664cc\" 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-7d9b6439 lakit-col-width-auto-no\" data-id=\"7d9b6439\" 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-69250a50 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"69250a50\" 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-59452f5f elementor-invisible elementor-widget lastudio-kit elementor-lakit-subscribe-form\" data-id=\"59452f5f\" 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>Our Texture Release\u2122 System is heat-activated system made from amino acids and conditioning agents which go deep into the hair fibres to enable styling versatility. TEXTURE RELEASE The system is ideal for the client who requires temporary textural change for increased combing manageability. Texture Release\u2122 underwent a revamp recently, with a reformulated system utilising the […]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"open","template":"","meta":{"footnotes":""},"class_list":["post-5303","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/5303","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=5303"}],"version-history":[{"count":115,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/5303\/revisions"}],"predecessor-version":[{"id":8965,"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=\/wp\/v2\/pages\/5303\/revisions\/8965"}],"wp:attachment":[{"href":"https:\/\/14digitalapps.co.uk\/avloneurope6\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5303"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}