Make WordPress Themes

Changeset 242135

Timestamp:
09/16/2024 09:06:19 AM (14 months ago)
Author:
themedropbox
Message:

New version of Kubio - 1.0.33

Location:
kubio/1.0.33
Files:
11 added
13 deleted
17 edited
1 copied

Legend:

Unmodified
Added
Removed
  • kubio/1.0.33/composer.lock

    r234973 r242135  
    192192        {
    193193            "name": "squizlabs/php_codesniffer",
    194             "version": "3.10.1",
     194            "version": "3.10.2",
    195195            "source": {
    196196                "type": "git",
    197197                "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
    198                 "reference": "8f90f7a53ce271935282967f53d0894f8f1ff877"
    199             },
    200             "dist": {
    201                 "type": "zip",
    202                 "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/8f90f7a53ce271935282967f53d0894f8f1ff877",
    203                 "reference": "8f90f7a53ce271935282967f53d0894f8f1ff877",
     198                "reference": "86e5f5dd9a840c46810ebe5ff1885581c42a3017"
     199            },
     200            "dist": {
     201                "type": "zip",
     202                "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/86e5f5dd9a840c46810ebe5ff1885581c42a3017",
     203                "reference": "86e5f5dd9a840c46810ebe5ff1885581c42a3017",
    204204                "shasum": ""
    205205            },
     
    262262                }
    263263            ],
    264             "time": "2024-05-22T21:24:41+00:00"
     264            "time": "2024-07-21T23:26:44+00:00"
    265265        },
    266266        {
  • kubio/1.0.33/functions.php

    r228824 r242135  
    3434use Kubio\Theme\Flags;
    3535use Kubio\Theme\Theme;
     36use Kubio\Core\Activation;
    3637
    3738require_once get_template_directory() . '/vendor/autoload.php';
     
    174175add_action('after_setup_theme', 'kubio_theme_add_woocommerce_support');
    175176
     177add_filter( 'kubio/activation/after_activation_redirect_url', 'kubio_after_activation_redirect_url' );
     178function kubio_after_activation_redirect_url( $url ) {
     179    if ( Flags::get( 'start_source', false ) == 'notice-homepage' ) {
     180        $url = add_query_arg(
     181            array(
     182                'page'                    => 'kubio-get-started',
     183                'kubio-designed-imported' => intval( ! ! Flags::get( 'import_design', false ) ),
     184            ),
     185            admin_url( 'admin.php' )
     186        );
     187    }
     188    return $url;
     189}
     190
    176191Hooks::add_wp_ajax(
    177192    'front_set_predesign',
     
    180195        $with_ai = Utils::pathGet($_REQUEST, 'AI', 'no');
    181196        $source = sanitize_text_field(Utils::pathGet($_REQUEST, 'source', 'notice'));
    182 
    183         if ($with_ai === 'yes') {
    184             Flags::set('start_with_ai', true);
    185         } else {
    186             Flags::set('import_design', true);
    187         }
    188 
    189         // customizer source
    190         $start_source = $source;
    191 
    192         // not customizer source
    193         if (strpos($source, 'customizer') === false) {
    194             $start_source = $with_ai === 'yes' ? "{$source}-ai" : "{$source}-homepage";
    195         }
     197        $index   = intval( Utils::pathGet( $_REQUEST, 'index', 0 ) );
     198
     199        if ( $with_ai === 'yes' ) {
     200            Flags::set( 'start_with_ai', true );
     201        } else {
     202            Flags::set( 'import_design', true );
     203            Flags::set( 'import_design_index', $index );
     204        }
     205
     206        // customizer source
     207        $start_source = $source;
     208
     209        if ( $source === 'notice' ) {
     210            $start_source = $with_ai === 'yes' ? "{$source}-ai" : "{$source}-homepage";
     211        }
    196212        Flags::set('start_source', $start_source);
    197213
     
    230246Hooks::prefixed_add_filter('theme_plugins', 'kubio_theme_plugins');
    231247
     248add_filter(
     249    'kubio/remote_data_url',
     250    function( $url ) {
     251        if ( strpos( $url, 'with-front' ) !== false && Flags::get( 'import_design_index', 0 ) !== 0 ) {
     252            $front_slug = 'with-front-' . Flags::get( 'import_design_index' );
     253            $base_url   = 'https://themes.kubiobuilder.com';
     254            $file_name  = get_stylesheet() . '__' . get_template() . '__' . $front_slug . '.data';
     255            return "{$base_url}/{$file_name}";
     256        }
     257        return $url;
     258    }
     259);
     260
     261
     262add_action(
     263    'kubio/after_activation',
     264    function () {
     265        $activation_instance = Activation::load();
     266        if ( ! $activation_instance->isCLI() ) {
     267            $start_source = Flags::get( 'start_source', 'other' );
     268            if ( $start_source == 'starter-sites' ) {
     269                $url = add_query_arg(
     270                    array(
     271                        'page' => 'kubio-get-started',
     272                        'tab'  => 'demo-sites',
     273                    ),
     274                    admin_url( 'admin.php' )
     275                );
     276                wp_redirect( $url );
     277                exit();
     278            }
     279        }
     280    }
     281);
     282
    232283Hooks::prefixed_add_action(
    233     'after_plugin_activated',
    234     function ($slug) {
    235 
    236         if ($slug === kubio_get_builder_plugin_slug()) {
    237             $hash = uniqid('activate-');
    238 
    239             Flags::set('activation-hash', $hash);
    240 
    241             $start_source = Flags::get('start_source', "other");
    242             if (strpos($start_source,  "customizer-sidebar") === 0) {
    243                 $url = add_query_arg(
    244                     array(
    245                         'page'                    => 'kubio',
    246                         'kubio-activation-hash'   => $hash
    247                     ),
    248                     admin_url('admin.php')
    249                 );
    250             } else {
    251                 $url = add_query_arg(
    252                     array(
    253                         'page'                    => 'kubio-get-started',
    254                         'kubio-activation-hash'   => $hash,
    255                         'kubio-designed-imported' => intval(!!Flags::get('import_design', false)),
    256                     ),
    257                     admin_url('admin.php')
    258                 );
    259             }
    260 
    261             wp_send_json_success(
    262                 array(
    263                     'redirect' => $url,
    264                 )
    265             );
    266         }
    267     }
     284    'after_plugin_activated',
     285    function ( $slug ) {
     286
     287        if ( $slug === kubio_get_builder_plugin_slug() ) {
     288            $hash = uniqid( 'activate-' );
     289
     290            Flags::set( 'activation-hash', $hash );
     291
     292            $start_source = Flags::get( 'start_source', 'other' );
     293            if ( strpos( $start_source, 'customizer-sidebar' ) === 0 ) {
     294                $url = add_query_arg(
     295                    array(
     296                        'page'                  => 'kubio',
     297                        'kubio-activation-hash' => $hash,
     298                    ),
     299                    admin_url( 'admin.php' )
     300                );
     301            } else {
     302                if ( $start_source == 'starter-sites' ) {
     303                    $url = add_query_arg(
     304                        array(
     305                            'page'                  => 'kubio-get-started',
     306                            'tab'                   => 'demo-sites',
     307                            'kubio-activation-hash' => $hash,
     308                        ),
     309                        admin_url( 'admin.php' )
     310                    );
     311                } else {
     312                    $url = add_query_arg(
     313                        array(
     314                            'page'                    => 'kubio-get-started',
     315                            'kubio-activation-hash'   => $hash,
     316                            'kubio-designed-imported' => intval( ! ! Flags::get( 'import_design', false ) ),
     317                        ),
     318                        admin_url( 'admin.php' )
     319                    );
     320                }
     321            }
     322
     323            wp_send_json_success(
     324                array(
     325                    'redirect' => $url,
     326                )
     327            );
     328        }
     329    }
    268330);
    269331
  • kubio/1.0.33/inc/customizer-headers.php

    r216227 r242135  
    234234    'data' =>
    235235    array (
    236       'front-header.logo.props.layoutType' => 'image',
     236      'front-header.logo.props.layoutType' => 'text',
    237237      'front-header.header-menu.edit' => '',
    238238      'front-header.header-menu.style.descendants.innerMenu.justifyContent' => 'center',
     
    242242      'front-header.header-menu.props.hoverEffect.group.border.transition' => 'effect-borders-grow grow-from-left',
    243243      'front-header.hero.props.heroSection.layout' => 'textWithMediaOnRight',
    244       'front-header.hero.hero_column_width' => 50,
    245       'front-header.hero.full_height' => false,
    246       'front-header.hero.style.descendants.outer.background.color' => '',
    247       'front-header.hero.style.descendants.outer.background.type' => 'slideshow',
    248       'front-header.hero.style.descendants.outer.background.image.0.source.url' => '%s/../images/background-image.jpg',
    249       'front-header.hero.style.descendants.outer.background.image.0.position' => 'center center',
    250       'front-header.hero.style.descendants.outer.background.image.0.attachment' => 'scroll',
    251       'front-header.hero.style.descendants.outer.background.image.0.repeat' => 'no-repeat',
    252       'front-header.hero.style.descendants.outer.background.image.0.size' => 'cover',
    253       'front-header.hero.style.descendants.outer.background.image.0.source.gradient' =>
    254       array (
    255         'name' => 'night_fade',
    256         'angle' => '0',
    257         'steps' =>
    258         array (
    259           0 =>
    260           array (
    261             'color' => '#a18cd1',
    262             'position' => '0',
    263           ),
    264           1 =>
    265           array (
    266             'color' => '#fbc2eb',
    267             'position' => '100',
    268           ),
    269         ),
    270       ),
    271       'front-header.hero.style.descendants.outer.background.slideshow.slides' =>
    272       array (
    273         0 =>
    274         array (
    275           'url' => '%s/images/slide-1589419-pxhere.jpg',
    276           'index' => 0,
    277         ),
    278         1 =>
    279         array (
    280           'url' => '%s/images/slide-452-pxhere.jpg',
    281           'index' => 1,
    282         ),
    283         2 =>
    284         array (
    285           'url' => '%s/images/slide-1266150-pxhere.jpg',
    286           'index' => 2,
    287         ),
    288       ),
    289       'front-header.hero.style.descendants.outer.background.slideshow.duration.value' => 1500,
    290       'front-header.hero.style.descendants.outer.background.slideshow.speed.value' => 500,
    291       'front-header.hero.style.descendants.outer.background.video.videoType' => 'external',
    292       'front-header.hero.style.descendants.outer.background.video.externalUrl' => 'https://www.youtube.com/watch?v=xXRy-JQ8G0Y',
    293       'front-header.hero.style.descendants.outer.background.video.internalUrl' => '%s/../videos/demo-video.mp4',
    294       'front-header.hero.style.descendants.outer.background.video.poster.url' => '%s/../images/demo-video-cover.jpg',
    295       'front-header.hero.style.descendants.outer.background.overlay.type' => 'color',
    296       'front-header.hero.style.descendants.outer.background.overlay.shape.value' => 'none',
    297       'front-header.hero.style.descendants.outer.background.overlay.light' => '',
    298       'front-header.hero.style.descendants.outer.background.overlay.color.value' => 'rgba(0,0,0,0.5)',
    299       'front-header.hero.style.descendants.outer.background.overlay.gradient' =>
    300       array (
    301         'name' => 'night_fade',
    302         'angle' => '0',
    303         'steps' =>
    304         array (
    305           0 =>
    306           array (
    307             'color' => '#a18cd1',
    308             'position' => '0',
    309           ),
    310           1 =>
    311           array (
    312             'color' => '#fbc2eb',
    313             'position' => '100',
    314           ),
    315         ),
    316       ),
    317       'front-header.hero.style.descendants.outer.background.overlay.gradient_opacity' => 50,
    318       'front-header.hero.style.descendants.outer.background.overlay.enabled' => true,
    319       'front-header.hero.style.padding.top.value' => 50,
    320       'front-header.hero.style.padding.bottom.value' => 50,
    321       'front-header.title.show' => true,
    322       'front-header.title.localProps.content' => 'Your awesome site title goes here.',
    323       'front-header.title.style.descendants.text.textAlign' => 'left',
    324       'front-header.subtitle.show' => true,
    325       'front-header.subtitle.localProps.content' => 'Fusce vitae magna sit amet orci bibendum volutpat id quis enim. Quisque viverra ligula sit amet porttitor ornare.',
    326       'front-header.subtitle.style.descendants.text.textAlign' => 'left',
    327       'front-header.icon_list.localProps.iconList' =>
    328       array (
    329         0 =>
    330         array (
    331           'icon' =>
    332           array (
    333             'name' => 'font-awesome/map-marker',
    334             'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="map-marker" viewBox="0 0 1049.8953 1896.0833"><path d="M768 640q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zm256 0q0 109-33 179l-364 774q-16 33-47.5 52t-67.5 19-67.5-19-46.5-52L33 819Q0 749 0 640q0-212 150-362t362-150 362 150 150 362z"></path></svg>',
    335           ),
    336           'text' => 'Location, State, Country',
    337           'link_value' => 'https://maps.google.com/',
    338           'index' => 0,
    339         ),
    340         1 =>
    341         array (
    342           'icon' =>
    343           array (
    344             'name' => 'font-awesome/phone-square',
    345             'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="phone-square" viewBox="0 0 1536 1896.0833"><path d="M1280 1193q0-11-2-16t-18-16.5-40.5-25-47.5-26.5-45.5-25-28.5-15q-5-3-19-13t-25-15-21-5q-15 0-36.5 20.5t-39.5 45-38.5 45T885 1167q-7 0-16.5-3.5T853 1157t-17-9.5-14-8.5q-99-55-170-126.5T525 842q-2-3-8.5-14t-9.5-17-6.5-15.5T497 779q0-13 20.5-33.5t45-38.5 45-39.5T628 631q0-10-5-21t-15-25-13-19q-3-6-15-28.5T555 492t-26.5-47.5-25-40.5-16.5-18-16-2q-48 0-101 22-46 21-80 94.5T256 631q0 16 2.5 34t5 30.5 9 33 10 29.5 12.5 33 11 30q60 164 216.5 320.5T843 1358q6 2 30 11t33 12.5 29.5 10 33 9 30.5 5 34 2.5q57 0 130.5-34t94.5-80q22-53 22-101zm256-777v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
    346           ),
    347           'text' => '(000) 123 12345',
    348           'link_value' => 'tel:(000) 123 12345',
    349           'index' => 1,
    350         ),
    351         2 =>
    352         array (
    353           'icon' =>
    354           array (
    355             'name' => 'font-awesome/envelope-open-o',
    356             'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="envelope" viewBox="0 0 1792 1896.0833"><path d="M1792 710v794q0 66-47 113t-113 47H160q-66 0-113-47T0 1504V710q44 49 101 87 362 246 497 345 57 42 92.5 65.5t94.5 48 110 24.5h2q51 0 110-24.5t94.5-48 92.5-65.5q170-123 498-345 57-39 100-87zm0-294q0 79-49 151t-122 123q-376 261-468 325-10 7-42.5 30.5t-54 38-52 32.5-57.5 27-50 9h-2q-23 0-50-9t-57.5-27-52-32.5-54-38T639 1015q-91-64-262-182.5T172 690q-62-42-117-115.5T0 438q0-78 41.5-130T160 256h1472q65 0 112.5 47t47.5 113z"></path></svg>',
    357           ),
    358           'text' => 'email@yoursite.com',
    359           'link_value' => 'mailto:email@yoursite.com',
    360           'index' => 2,
    361         ),
    362       ),
    363       'front-header.social_icons.localProps.iconList' =>
    364       array (
    365         0 =>
    366         array (
    367           'icon' =>
    368           array (
    369             'name' => 'font-awesome/facebook-square',
    370             'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="facebook-square" viewBox="0 0 1536 1896.0833"><path d="M1248 128q119 0 203.5 84.5T1536 416v960q0 119-84.5 203.5T1248 1664h-188v-595h199l30-232h-229V689q0-56 23.5-84t91.5-28l122-1V369q-63-9-178-9-136 0-217.5 80T820 666v171H620v232h200v595H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960z"/></svg>',
    371           ),
    372           'link_value' => 'http://www.facebook.com/',
    373           'index' => 0,
    374         ),
    375         1 =>
    376         array (
    377           'icon' =>
    378           array (
    379             'name' => 'font-awesome/twitter-square',
    380             'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="twitter-square" viewBox="0 0 1536 1896.0833"><path d="M1280 610q-56 25-121 34 68-40 93-117-65 38-134 51-61-66-153-66-87 0-148.5 61.5T755 722q0 29 5 48-129-7-242-65T326 550q-29 50-29 106 0 114 91 175-47-1-100-26v2q0 75 50 133.5t123 72.5q-29 8-51 8-13 0-39-4 21 63 74.5 104t121.5 42q-116 90-261 90-26 0-50-3 148 94 322 94 112 0 210-35.5t168-95 120.5-137 75-162T1176 746q0-18-1-27 63-45 105-109zm256-194v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"/></svg>',
    381           ),
    382           'link_value' => 'http://www.twitter.com/',
    383           'index' => 1,
    384         ),
    385         2 =>
    386         array (
    387           'icon' =>
    388           array (
    389             'name' => 'font-awesome/youtube-square',
    390             'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="youtube-square" viewBox="0 0 1536 1896.0833">                                <path d="M919 1303v-157q0-50-29-50-17 0-33 16v224q16 16 33 16 29 0 29-49zm184-122h66v-34q0-51-33-51t-33 51v34zM532 915v70h-80v423h-74V985h-78v-70h232zm201 126v367h-67v-40q-39 45-76 45-33 0-42-28-6-17-6-54v-290h66v270q0 24 1 26 1 15 15 15 20 0 42-31v-280h67zm252 111v146q0 52-7 73-12 42-53 42-35 0-68-41v36h-67V915h67v161q32-40 68-40 41 0 53 42 7 21 7 74zm251 129v9q0 29-2 43-3 22-15 40-27 40-80 40-52 0-81-38-21-27-21-86v-129q0-59 20-86 29-38 80-38t78 38q21 29 21 86v76h-133v65q0 51 34 51 24 0 30-26 0-1 .5-7t.5-16.5V1281h68zM785 457v156q0 51-32 51t-32-51V457q0-52 32-52t32 52zm533 713q0-177-19-260-10-44-43-73.5t-76-34.5q-136-15-412-15-275 0-411 15-44 5-76.5 34.5T238 910q-20 87-20 260 0 176 20 260 10 43 42.5 73t75.5 35q137 15 412 15t412-15q43-5 75.5-35t42.5-73q20-84 20-260zM563 519l90-296h-75l-51 195-53-195h-78q7 23 23 69l24 69q35 103 46 158v201h74V519zm289 81V470q0-58-21-87-29-38-78-38-51 0-78 38-21 29-21 87v130q0 58 21 87 27 38 78 38 49 0 78-38 21-27 21-87zm181 120h67V350h-67v283q-22 31-42 31-15 0-16-16-1-2-1-26V350h-67v293q0 37 6 55 11 27 43 27 36 0 77-45v40zm503-304v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
    391           ),
    392           'link_value' => 'http://www.youtube.com/',
    393           'index' => 2,
    394         ),
    395         3 =>
    396         array (
    397           'icon' =>
    398           array (
    399             'name' => 'font-awesome/vimeo-square',
    400             'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="vimeo-square" viewBox="0 0 1536 1896.0833">                                <path d="M1292 638q10-216-161-222-231-8-312 261 44-19 82-19 85 0 74 96-4 57-74 167t-105 110q-43 0-82-169-13-54-45-255-30-189-160-177-59 7-164 100l-81 72-81 72 52 67q76-52 87-52 57 0 107 179 15 55 45 164.5t45 164.5q68 179 164 179 157 0 383-294 220-283 226-444zm244-222v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
    401           ),
    402           'link_value' => 'http://www.vimeo.com/',
    403           'index' => 3,
    404         ),
    405       ),
    406       'front-header.navigation.props.layoutType' => 'logo-spacing-menu',
    407       'front-header.navigation.props.width' => 'boxed',
    408       'front-header.navigation.style.padding.top.value' => 20,
    409       'front-header.navigation.hidden' => '',
    410       'front-header.navigation.props.showTopBar' => false,
    411       'front-header.hero.image.localProps.url' => '%s/images/side-1418560-pxhere.jpg',
    412       'front-header.hero.image.style.descendants.image.boxShadow.layers.0' =>
    413       array (
    414         'x' => 0,
    415         'y' => 0,
    416         'spread' => 10,
    417         'blur' => 4,
    418         'color' => '#000000',
    419       ),
    420       'front-header.hero.image.style.descendants.image.boxShadow.enabled' => false,
    421       'front-header.hero.image.props.frame.type' => 'border',
    422       'front-header.hero.image.style.descendants.frameImage.backgroundColor' => 'rgba(255,255,255,1)',
    423       'front-header.hero.image.style.descendants.frameImage.width' => 100,
    424       'front-header.hero.image.style.descendants.frameImage.height' => 100,
    425       'front-header.hero.image.style.descendants.frameImage.transform.translate' =>
    426       array (
    427         'x_value' => 0,
    428         'y_value' => 0,
    429       ),
    430       'front-header.hero.image.style.descendants.frameImage.thickness' => 10,
    431       'front-header.hero.image.props.showFrameOverImage' => true,
    432       'front-header.hero.image.props.showFrameShadow' => true,
    433       'front-header.hero.image.props.enabledFrameOption' => true,
    434       'front-header.buttons.show' => true,
    435       'front-header.buttons.value' =>
    436       array (
    437         0 =>
    438         array (
    439           'label' => 'Get started today',
    440           'url' => '#',
    441           'button_type' => '0',
    442           'index' => 0,
    443         ),
    444         1 =>
    445         array (
    446           'label' => 'Learn more',
    447           'url' => '#',
    448           'button_type' => '1',
    449           'index' => 1,
    450         ),
    451       ),
    452       'front-header.buttons.style.textAlign' => 'left',
    453       'front-header.hero.style.descendants.outer.separators.separatorBottom.type' => 'tilt',
    454       'front-header.hero.style.descendants.outer.separators.separatorBottom.color' => 'rgba(255, 255, 255, 1)',
    455       'front-header.hero.style.descendants.outer.separators.separatorBottom.height.value' => 200,
    456       'front-header.hero.style.descendants.outer.separators.separatorBottom.enabled' => true,
    457       'front-header.hero.style.descendants.outer.separators.separatorBottom.negative' => false,
    458       'front-header.navigation.style.padding.top.unit' => 'px',
    459       'front-header.hero.style.descendants.outer.background.overlay.gradient.name' => 'night_fade',
    460       'front-header.hero.style.descendants.outer.background.overlay.gradient.angle' => 0,
    461       'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.color' => '#a18cd1',
    462       'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.position' => 0,
    463       'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.color' => '#fbc2eb',
    464       'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.position' => 100,
    465       'front-header.hero.style.descendants.outer.background.overlay.shape.isTile' => false,
    466       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.name' => 'night_fade',
    467       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.angle' => 0,
    468       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.color' => '#a18cd1',
    469       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.position' => 0,
    470       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.color' => '#fbc2eb',
    471       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.position' => 100,
    472       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.x' => 0,
    473       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.y' => 0,
    474       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.spread' => 20,
    475       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.blur' => 0,
    476       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.color' => '#000000',
    477       'front-header.hero.image.style.descendants.frameImage.transform.translate.x_value' => 10,
    478       'front-header.hero.image.style.descendants.frameImage.transform.translate.y_value' => 10,
    479       'front-header.social_icons.show' => true,
    480       'front-header.icon_list.show' => true,
    481     ),
    482   ),
    483   2 =>
    484   array (
    485     'image' => '%s/header-3-preview.jpg',
    486     'data' =>
    487     array (
    488       'front-header.logo.props.layoutType' => 'image',
    489       'front-header.header-menu.edit' => '',
    490       'front-header.header-menu.style.descendants.innerMenu.justifyContent' => 'center',
    491       'front-header.header-menu.props.showOffscreenMenuOn' => 'has-offcanvas-mobile',
    492       'front-header.header-menu.props.hoverEffect.type' => 'bordered-active-item bordered-active-item--bottom',
    493       'front-header.header-menu.props.hoverEffect.activeGroup' => 'border',
    494       'front-header.header-menu.props.hoverEffect.group.border.transition' => 'effect-borders-grow grow-from-left',
    495       'front-header.hero.props.heroSection.layout' => 'textWithMediaOnRight',
    496       'front-header.hero.hero_column_width' => 50,
     244      'front-header.hero.hero_column_width' => 60,
    497245      'front-header.hero.full_height' => true,
    498246      'front-header.hero.style.descendants.outer.background.color' => '',
    499       'front-header.hero.style.descendants.outer.background.type' => 'video',
    500       'front-header.hero.style.descendants.outer.background.image.0.source.url' => '%s/../images/background-image.jpg',
    501       'front-header.hero.style.descendants.outer.background.image.0.position' => 'center center',
     247      'front-header.hero.style.descendants.outer.background.type' => 'image',
     248      'front-header.hero.style.descendants.outer.background.image.0.source.url' => '%s/images/StockSnap_87ONRC5PWV-hero.jpg',
     249      'front-header.hero.style.descendants.outer.background.image.0.position' => 'bottom left',
    502250      'front-header.hero.style.descendants.outer.background.image.0.attachment' => 'scroll',
    503251      'front-header.hero.style.descendants.outer.background.image.0.repeat' => 'no-repeat',
     
    569317      'front-header.hero.style.descendants.outer.background.overlay.gradient_opacity' => 50,
    570318      'front-header.hero.style.descendants.outer.background.overlay.enabled' => true,
    571       'front-header.hero.style.padding.top.value' => 150,
    572       'front-header.hero.style.padding.bottom.value' => 200,
     319      'front-header.hero.style.padding.top.value' => 50,
     320      'front-header.hero.style.padding.bottom.value' => 50,
    573321      'front-header.title.show' => true,
    574       'front-header.title.localProps.content' => 'Your awesome site title goes here.',
     322      'front-header.title.localProps.content' => 'Build Your Business',
    575323      'front-header.title.style.descendants.text.textAlign' => 'left',
    576324      'front-header.subtitle.show' => true,
    577       'front-header.subtitle.localProps.content' => 'Fusce vitae magna sit amet orci bibendum volutpat id quis enim. Quisque viverra ligula sit amet porttitor ornare.',
     325      'front-header.subtitle.localProps.content' => 'Lorem ipsum dolor sit amet, at mei dolore tritani repudiandae. In his nemore temporibus consequuntur, vim ad prima vivendum consetetur. Viderer feugiat at pro, mea aperiam.',
    578326      'front-header.subtitle.style.descendants.text.textAlign' => 'left',
    579327      'front-header.icon_list.localProps.iconList' =>
     
    661409      'front-header.navigation.hidden' => '',
    662410      'front-header.navigation.props.showTopBar' => false,
    663       'front-header.hero.image.localProps.url' => '%s/images/side-808521-pxhere.jpg',
     411      'front-header.hero.image.localProps.url' => '%s/images/StockSnap_MUNCW5ZFUZ-hero2.jpg',
    664412      'front-header.hero.image.style.descendants.image.boxShadow.layers.0' =>
    665413      array (
    666414        'x' => 0,
    667415        'y' => 0,
    668         'spread' => 20,
    669         'blur' => 0,
    670         'color' => 'rgba(255, 255, 255, 1)',
     416        'spread' => 10,
     417        'blur' => 4,
     418        'color' => '#000000',
    671419      ),
    672420      'front-header.hero.image.style.descendants.image.boxShadow.enabled' => false,
    673421      'front-header.hero.image.props.frame.type' => 'border',
    674       'front-header.hero.image.style.descendants.frameImage.backgroundColor' => 'rgba(255, 255, 255, 1)',
     422      'front-header.hero.image.style.descendants.frameImage.backgroundColor' => 'rgba(255,255,255,1)',
    675423      'front-header.hero.image.style.descendants.frameImage.width' => 100,
    676424      'front-header.hero.image.style.descendants.frameImage.height' => 100,
    677425      'front-header.hero.image.style.descendants.frameImage.transform.translate' =>
    678426      array (
    679         'x_value' => 10,
    680         'y_value' => 10,
     427        'x_value' => 0,
     428        'y_value' => 0,
    681429      ),
    682430      'front-header.hero.image.style.descendants.frameImage.thickness' => 10,
    683431      'front-header.hero.image.props.showFrameOverImage' => true,
    684       'front-header.hero.image.props.showFrameShadow' => false,
     432      'front-header.hero.image.props.showFrameShadow' => true,
    685433      'front-header.hero.image.props.enabledFrameOption' => true,
    686434      'front-header.buttons.show' => true,
     
    689437        0 =>
    690438        array (
    691           'label' => 'Get started today',
     439          'label' => 'Start today',
    692440          'url' => '#',
    693441          'button_type' => '0',
     
    696444        1 =>
    697445        array (
    698           'label' => 'Learn more',
     446          'label' => 'Contact us',
    699447          'url' => '#',
    700448          'button_type' => '1',
     
    705453      'front-header.hero.style.descendants.outer.separators.separatorBottom.type' => 'tilt',
    706454      'front-header.hero.style.descendants.outer.separators.separatorBottom.color' => 'rgba(255, 255, 255, 1)',
    707       'front-header.hero.style.descendants.outer.separators.separatorBottom.height.value' => 100,
     455      'front-header.hero.style.descendants.outer.separators.separatorBottom.height.value' => 200,
    708456      'front-header.hero.style.descendants.outer.separators.separatorBottom.enabled' => false,
    709457      'front-header.hero.style.descendants.outer.separators.separatorBottom.negative' => false,
    710       'front-header.navigation.style.padding.top.unit' => 'px',
     458      'front-header.hero.image.style.descendants.frameImage.transform.translate.x_value' => 10,
     459      'front-header.hero.image.style.descendants.frameImage.transform.translate.y_value' => 10,
     460      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.blur' => 0,
     461      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.color' => '#000000',
     462      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.spread' => 20,
     463      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.x' => 0,
     464      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.y' => 0,
     465      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.angle' => 0,
     466      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.name' => 'night_fade',
     467      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.color' => '#a18cd1',
     468      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.position' => 0,
     469      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.color' => '#fbc2eb',
     470      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.position' => 100,
     471      'front-header.hero.style.descendants.outer.background.overlay.gradient.angle' => 0,
    711472      'front-header.hero.style.descendants.outer.background.overlay.gradient.name' => 'night_fade',
    712       'front-header.hero.style.descendants.outer.background.overlay.gradient.angle' => 0,
    713473      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.color' => '#a18cd1',
    714474      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.position' => 0,
     
    716476      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.position' => 100,
    717477      'front-header.hero.style.descendants.outer.background.overlay.shape.isTile' => false,
    718       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.name' => 'night_fade',
    719       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.angle' => 0,
    720       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.color' => '#a18cd1',
    721       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.position' => 0,
    722       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.color' => '#fbc2eb',
    723       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.position' => 100,
    724       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.x' => 0,
    725       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.y' => 0,
    726       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.spread' => 20,
    727       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.blur' => 0,
    728       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.color' => '#000000',
    729       'front-header.hero.image.style.descendants.frameImage.transform.translate.x_value' => 10,
    730       'front-header.hero.image.style.descendants.frameImage.transform.translate.y_value' => 10,
     478      'front-header.icon_list.show' => true,
     479      'front-header.navigation.style.padding.top.unit' => 'px',
    731480      'front-header.social_icons.show' => true,
    732       'front-header.icon_list.show' => true,
    733481    ),
    734482  ),
    735   3 =>
     483  2 =>
    736484  array (
    737     'image' => '%s/header-4-preview.jpg',
     485    'image' => '%s/header-3-preview.jpg',
    738486    'data' =>
    739487    array (
    740       'front-header.logo.props.layoutType' => 'image',
    741       'front-header.header-menu.edit' => '',
    742       'front-header.header-menu.style.descendants.innerMenu.justifyContent' => 'center',
    743       'front-header.header-menu.props.showOffscreenMenuOn' => 'has-offcanvas-mobile',
    744       'front-header.header-menu.props.hoverEffect.type' => 'bordered-active-item bordered-active-item--bottom',
    745       'front-header.header-menu.props.hoverEffect.activeGroup' => 'border',
    746       'front-header.header-menu.props.hoverEffect.group.border.transition' => 'effect-borders-grow grow-from-left',
    747       'front-header.hero.props.heroSection.layout' => 'textOnly',
    748       'front-header.hero.hero_column_width' => 80,
    749       'front-header.hero.full_height' => true,
    750       'front-header.hero.style.descendants.outer.background.color' => '',
    751       'front-header.hero.style.descendants.outer.background.type' => 'slideshow',
    752       'front-header.hero.style.descendants.outer.background.image.0.source.url' => '%s/../images/background-image.jpg',
    753       'front-header.hero.style.descendants.outer.background.image.0.position' => 'center center',
    754       'front-header.hero.style.descendants.outer.background.image.0.attachment' => 'scroll',
    755       'front-header.hero.style.descendants.outer.background.image.0.repeat' => 'no-repeat',
    756       'front-header.hero.style.descendants.outer.background.image.0.size' => 'cover',
    757       'front-header.hero.style.descendants.outer.background.image.0.source.gradient' =>
    758       array (
    759         'name' => 'night_fade',
    760         'angle' => '0',
    761         'steps' =>
    762         array (
    763           0 =>
    764           array (
    765             'color' => '#a18cd1',
    766             'position' => '0',
    767           ),
    768           1 =>
    769           array (
    770             'color' => '#fbc2eb',
    771             'position' => '100',
    772           ),
    773         ),
    774       ),
    775       'front-header.hero.style.descendants.outer.background.slideshow.slides' =>
    776       array (
    777         0 =>
    778         array (
    779           'url' => '%s/images/slide-99190-pxhere.jpg',
    780           'index' => 0,
    781         ),
    782         1 =>
    783         array (
    784           'url' => '%s/images/slide-7835-pxhere.jpeg',
    785           'index' => 1,
    786         ),
    787       ),
    788       'front-header.hero.style.descendants.outer.background.slideshow.duration.value' => 3000,
    789       'front-header.hero.style.descendants.outer.background.slideshow.speed.value' => 1000,
    790       'front-header.hero.style.descendants.outer.background.video.videoType' => 'external',
    791       'front-header.hero.style.descendants.outer.background.video.externalUrl' => 'https://www.youtube.com/watch?v=xXRy-JQ8G0Y',
    792       'front-header.hero.style.descendants.outer.background.video.internalUrl' => '%s/../videos/demo-video.mp4',
    793       'front-header.hero.style.descendants.outer.background.video.poster.url' => '%s/../images/demo-video-cover.jpg',
    794       'front-header.hero.style.descendants.outer.background.overlay.type' => 'gradient',
    795       'front-header.hero.style.descendants.outer.background.overlay.shape.value' => 'none',
    796       'front-header.hero.style.descendants.outer.background.overlay.light' => '',
    797       'front-header.hero.style.descendants.outer.background.overlay.color.value' => 'rgba(0,0,0,0.6)',
    798       'front-header.hero.style.descendants.outer.background.overlay.gradient' =>
    799       array (
    800         'steps' =>
    801         array (
    802           0 =>
    803           array (
    804             'color' => '#fccb90',
    805             'position' => '0',
    806           ),
    807           1 =>
    808           array (
    809             'color' => '#d57eeb',
    810             'position' => '100',
    811           ),
    812         ),
    813         'name' => 'mean_fruit',
    814         'angle' => '120',
    815       ),
    816       'front-header.hero.style.descendants.outer.background.overlay.gradient_opacity' => 50,
    817       'front-header.hero.style.descendants.outer.background.overlay.enabled' => true,
    818       'front-header.hero.style.padding.top.value' => 150,
    819       'front-header.hero.style.padding.bottom.value' => 200,
    820       'front-header.title.show' => true,
    821       'front-header.title.localProps.content' => 'Your awesome site title goes here.',
    822       'front-header.title.style.descendants.text.textAlign' => 'center',
    823       'front-header.subtitle.show' => true,
    824       'front-header.subtitle.localProps.content' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enimnad minim veniam, quis nostrud exercitation ullamco laboris nisi.',
    825       'front-header.subtitle.style.descendants.text.textAlign' => 'center',
    826       'front-header.icon_list.localProps.iconList' =>
    827       array (
    828         0 =>
    829         array (
    830           'icon' =>
    831           array (
    832             'name' => 'font-awesome/map-marker',
    833             'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="map-marker" viewBox="0 0 1049.8953 1896.0833"><path d="M768 640q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zm256 0q0 109-33 179l-364 774q-16 33-47.5 52t-67.5 19-67.5-19-46.5-52L33 819Q0 749 0 640q0-212 150-362t362-150 362 150 150 362z"></path></svg>',
    834           ),
    835           'text' => 'Location, State, Country',
    836           'link_value' => 'https://maps.google.com/',
    837           'index' => 0,
    838         ),
    839         1 =>
    840         array (
    841           'icon' =>
    842           array (
    843             'name' => 'font-awesome/phone-square',
    844             'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="phone-square" viewBox="0 0 1536 1896.0833"><path d="M1280 1193q0-11-2-16t-18-16.5-40.5-25-47.5-26.5-45.5-25-28.5-15q-5-3-19-13t-25-15-21-5q-15 0-36.5 20.5t-39.5 45-38.5 45T885 1167q-7 0-16.5-3.5T853 1157t-17-9.5-14-8.5q-99-55-170-126.5T525 842q-2-3-8.5-14t-9.5-17-6.5-15.5T497 779q0-13 20.5-33.5t45-38.5 45-39.5T628 631q0-10-5-21t-15-25-13-19q-3-6-15-28.5T555 492t-26.5-47.5-25-40.5-16.5-18-16-2q-48 0-101 22-46 21-80 94.5T256 631q0 16 2.5 34t5 30.5 9 33 10 29.5 12.5 33 11 30q60 164 216.5 320.5T843 1358q6 2 30 11t33 12.5 29.5 10 33 9 30.5 5 34 2.5q57 0 130.5-34t94.5-80q22-53 22-101zm256-777v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
    845           ),
    846           'text' => '(000) 123 12345',
    847           'link_value' => 'tel:(000) 123 12345',
    848           'index' => 1,
    849         ),
    850         2 =>
    851         array (
    852           'icon' =>
    853           array (
    854             'name' => 'font-awesome/envelope-open-o',
    855             'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="envelope" viewBox="0 0 1792 1896.0833"><path d="M1792 710v794q0 66-47 113t-113 47H160q-66 0-113-47T0 1504V710q44 49 101 87 362 246 497 345 57 42 92.5 65.5t94.5 48 110 24.5h2q51 0 110-24.5t94.5-48 92.5-65.5q170-123 498-345 57-39 100-87zm0-294q0 79-49 151t-122 123q-376 261-468 325-10 7-42.5 30.5t-54 38-52 32.5-57.5 27-50 9h-2q-23 0-50-9t-57.5-27-52-32.5-54-38T639 1015q-91-64-262-182.5T172 690q-62-42-117-115.5T0 438q0-78 41.5-130T160 256h1472q65 0 112.5 47t47.5 113z"></path></svg>',
    856           ),
    857           'text' => 'email@yoursite.com',
    858           'link_value' => 'mailto:email@yoursite.com',
    859           'index' => 2,
    860         ),
    861       ),
    862       'front-header.social_icons.localProps.iconList' =>
    863       array (
    864         0 =>
    865         array (
    866           'icon' =>
    867           array (
    868             'name' => 'font-awesome/facebook-square',
    869             'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="facebook-square" viewBox="0 0 1536 1896.0833"><path d="M1248 128q119 0 203.5 84.5T1536 416v960q0 119-84.5 203.5T1248 1664h-188v-595h199l30-232h-229V689q0-56 23.5-84t91.5-28l122-1V369q-63-9-178-9-136 0-217.5 80T820 666v171H620v232h200v595H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960z"/></svg>',
    870           ),
    871           'link_value' => 'http://www.facebook.com/',
    872           'index' => 0,
    873         ),
    874         1 =>
    875         array (
    876           'icon' =>
    877           array (
    878             'name' => 'font-awesome/twitter-square',
    879             'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="twitter-square" viewBox="0 0 1536 1896.0833"><path d="M1280 610q-56 25-121 34 68-40 93-117-65 38-134 51-61-66-153-66-87 0-148.5 61.5T755 722q0 29 5 48-129-7-242-65T326 550q-29 50-29 106 0 114 91 175-47-1-100-26v2q0 75 50 133.5t123 72.5q-29 8-51 8-13 0-39-4 21 63 74.5 104t121.5 42q-116 90-261 90-26 0-50-3 148 94 322 94 112 0 210-35.5t168-95 120.5-137 75-162T1176 746q0-18-1-27 63-45 105-109zm256-194v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"/></svg>',
    880           ),
    881           'link_value' => 'http://www.twitter.com/',
    882           'index' => 1,
    883         ),
    884         2 =>
    885         array (
    886           'icon' =>
    887           array (
    888             'name' => 'font-awesome/youtube-square',
    889             'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="youtube-square" viewBox="0 0 1536 1896.0833">                                <path d="M919 1303v-157q0-50-29-50-17 0-33 16v224q16 16 33 16 29 0 29-49zm184-122h66v-34q0-51-33-51t-33 51v34zM532 915v70h-80v423h-74V985h-78v-70h232zm201 126v367h-67v-40q-39 45-76 45-33 0-42-28-6-17-6-54v-290h66v270q0 24 1 26 1 15 15 15 20 0 42-31v-280h67zm252 111v146q0 52-7 73-12 42-53 42-35 0-68-41v36h-67V915h67v161q32-40 68-40 41 0 53 42 7 21 7 74zm251 129v9q0 29-2 43-3 22-15 40-27 40-80 40-52 0-81-38-21-27-21-86v-129q0-59 20-86 29-38 80-38t78 38q21 29 21 86v76h-133v65q0 51 34 51 24 0 30-26 0-1 .5-7t.5-16.5V1281h68zM785 457v156q0 51-32 51t-32-51V457q0-52 32-52t32 52zm533 713q0-177-19-260-10-44-43-73.5t-76-34.5q-136-15-412-15-275 0-411 15-44 5-76.5 34.5T238 910q-20 87-20 260 0 176 20 260 10 43 42.5 73t75.5 35q137 15 412 15t412-15q43-5 75.5-35t42.5-73q20-84 20-260zM563 519l90-296h-75l-51 195-53-195h-78q7 23 23 69l24 69q35 103 46 158v201h74V519zm289 81V470q0-58-21-87-29-38-78-38-51 0-78 38-21 29-21 87v130q0 58 21 87 27 38 78 38 49 0 78-38 21-27 21-87zm181 120h67V350h-67v283q-22 31-42 31-15 0-16-16-1-2-1-26V350h-67v293q0 37 6 55 11 27 43 27 36 0 77-45v40zm503-304v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
    890           ),
    891           'link_value' => 'http://www.youtube.com/',
    892           'index' => 2,
    893         ),
    894         3 =>
    895         array (
    896           'icon' =>
    897           array (
    898             'name' => 'font-awesome/vimeo-square',
    899             'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="vimeo-square" viewBox="0 0 1536 1896.0833">                                <path d="M1292 638q10-216-161-222-231-8-312 261 44-19 82-19 85 0 74 96-4 57-74 167t-105 110q-43 0-82-169-13-54-45-255-30-189-160-177-59 7-164 100l-81 72-81 72 52 67q76-52 87-52 57 0 107 179 15 55 45 164.5t45 164.5q68 179 164 179 157 0 383-294 220-283 226-444zm244-222v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
    900           ),
    901           'link_value' => 'http://www.vimeo.com/',
    902           'index' => 3,
    903         ),
    904       ),
    905       'front-header.navigation.props.layoutType' => 'logo-spacing-menu',
    906       'front-header.navigation.props.width' => 'boxed',
    907       'front-header.navigation.style.padding.top.value' => 20,
    908       'front-header.navigation.hidden' => '',
    909       'front-header.navigation.props.showTopBar' => false,
    910       'front-header.hero.image.localProps.url' => '',
    911       'front-header.hero.image.style.descendants.image.boxShadow.layers.0' =>
    912       array (
    913         'x' => 0,
    914         'y' => 0,
    915         'spread' => 20,
    916         'blur' => 0,
    917         'color' => 'rgba(255, 255, 255, 1)',
    918       ),
    919       'front-header.hero.image.style.descendants.image.boxShadow.enabled' => false,
    920       'front-header.hero.image.props.frame.type' => 'border',
    921       'front-header.hero.image.style.descendants.frameImage.backgroundColor' => 'rgba(255, 255, 255, 1)',
    922       'front-header.hero.image.style.descendants.frameImage.width' => 100,
    923       'front-header.hero.image.style.descendants.frameImage.height' => 100,
    924       'front-header.hero.image.style.descendants.frameImage.transform.translate' =>
    925       array (
    926         'x_value' => 10,
    927         'y_value' => 10,
    928       ),
    929       'front-header.hero.image.style.descendants.frameImage.thickness' => 10,
    930       'front-header.hero.image.props.showFrameOverImage' => true,
    931       'front-header.hero.image.props.showFrameShadow' => false,
    932       'front-header.hero.image.props.enabledFrameOption' => false,
    933       'front-header.buttons.show' => true,
    934       'front-header.buttons.value' =>
    935       array (
    936         0 =>
    937         array (
    938           'label' => 'Get started today',
    939           'url' => '#',
    940           'button_type' => '0',
    941           'index' => 0,
    942         ),
    943         1 =>
    944         array (
    945           'label' => 'Learn more',
    946           'url' => '#',
    947           'button_type' => '1',
    948           'index' => 1,
    949         ),
    950       ),
    951       'front-header.buttons.style.textAlign' => 'center',
    952       'front-header.hero.style.descendants.outer.separators.separatorBottom.type' => 'tilt',
    953       'front-header.hero.style.descendants.outer.separators.separatorBottom.color' => 'rgba(255, 255, 255, 1)',
    954       'front-header.hero.style.descendants.outer.separators.separatorBottom.height.value' => 100,
    955       'front-header.hero.style.descendants.outer.separators.separatorBottom.enabled' => false,
    956       'front-header.hero.style.descendants.outer.separators.separatorBottom.negative' => false,
    957       'front-header.navigation.style.padding.top.unit' => 'px',
    958       'front-header.hero.style.descendants.outer.background.overlay.gradient.name' => 'night_fade',
    959       'front-header.hero.style.descendants.outer.background.overlay.gradient.angle' => 0,
    960       'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.color' => '#a18cd1',
    961       'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.position' => 0,
    962       'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.color' => '#fbc2eb',
    963       'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.position' => 100,
    964       'front-header.hero.style.descendants.outer.background.overlay.shape.isTile' => false,
    965       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.name' => 'night_fade',
    966       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.angle' => 0,
    967       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.color' => '#a18cd1',
    968       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.position' => 0,
    969       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.color' => '#fbc2eb',
    970       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.position' => 100,
    971       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.x' => 0,
    972       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.y' => 0,
    973       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.spread' => 20,
    974       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.blur' => 0,
    975       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.color' => '#000000',
    976       'front-header.hero.image.style.descendants.frameImage.transform.translate.x_value' => 10,
    977       'front-header.hero.image.style.descendants.frameImage.transform.translate.y_value' => 10,
    978       'front-header.social_icons.show' => true,
    979       'front-header.icon_list.show' => true,
    980     ),
    981   ),
    982   4 =>
    983   array (
    984     'image' => '%s/header-5-preview.jpg',
    985     'data' =>
    986     array (
    987       'front-header.logo.props.layoutType' => 'image',
     488      'front-header.logo.props.layoutType' => 'text',
    988489      'front-header.header-menu.edit' => '',
    989490      'front-header.header-menu.style.descendants.innerMenu.justifyContent' => 'center',
     
    994495      'front-header.hero.props.heroSection.layout' => 'textOnly',
    995496      'front-header.hero.hero_column_width' => 100,
    996       'front-header.hero.full_height' => false,
     497      'front-header.hero.full_height' => true,
     498      'front-header.hero.style.descendants.outer.background.color' => 'rgba(255,255,255,0.5)',
     499      'front-header.hero.style.descendants.outer.background.type' => 'image',
     500      'front-header.hero.style.descendants.outer.background.image.0.source.url' => '%s/images/51854277936_91eb700b8e_c.jpg',
     501      'front-header.hero.style.descendants.outer.background.image.0.position' => 'top left',
     502      'front-header.hero.style.descendants.outer.background.image.0.attachment' => 'fixed',
     503      'front-header.hero.style.descendants.outer.background.image.0.repeat' => 'no-repeat',
     504      'front-header.hero.style.descendants.outer.background.image.0.size' => 'cover',
     505      'front-header.hero.style.descendants.outer.background.image.0.source.gradient' =>
     506      array (
     507        'name' => 'night_fade',
     508        'angle' => '0',
     509        'steps' =>
     510        array (
     511          0 =>
     512          array (
     513            'color' => '#a18cd1',
     514            'position' => '0',
     515          ),
     516          1 =>
     517          array (
     518            'color' => '#fbc2eb',
     519            'position' => '100',
     520          ),
     521        ),
     522      ),
     523      'front-header.hero.style.descendants.outer.background.slideshow.slides' =>
     524      array (
     525        0 =>
     526        array (
     527          'url' => '%s/images/beach-landscape-sea-water-nature-sand-1061655-pxhere.com.jpg',
     528          'index' => 0,
     529        ),
     530        1 =>
     531        array (
     532          'url' => '%s/images/landscape-tree-water-nature-grass-outdoor-1327743-pxhere.com.jpg',
     533          'index' => 1,
     534        ),
     535        2 =>
     536        array (
     537          'url' => '%s/images/leaf-nature-water-green-freshness-dew-1440543-pxhere.com.jpg',
     538          'index' => 2,
     539        ),
     540      ),
     541      'front-header.hero.style.descendants.outer.background.slideshow.duration.value' => 1500,
     542      'front-header.hero.style.descendants.outer.background.slideshow.speed.value' => 500,
     543      'front-header.hero.style.descendants.outer.background.video.videoType' => 'external',
     544      'front-header.hero.style.descendants.outer.background.video.externalUrl' => 'https://www.youtube.com/watch?v=xXRy-JQ8G0Y',
     545      'front-header.hero.style.descendants.outer.background.video.internalUrl' => '%s/../videos/demo-video.mp4',
     546      'front-header.hero.style.descendants.outer.background.video.poster.url' => '%s/../images/demo-video-cover.jpg',
     547      'front-header.hero.style.descendants.outer.background.overlay.type' => 'color',
     548      'front-header.hero.style.descendants.outer.background.overlay.shape.value' => '10degree-stripes',
     549      'front-header.hero.style.descendants.outer.background.overlay.light' => 100,
     550      'front-header.hero.style.descendants.outer.background.overlay.color.value' => 'rgba(24,115,213,0.79)',
     551      'front-header.hero.style.descendants.outer.background.overlay.gradient' =>
     552      array (
     553        'steps' =>
     554        array (
     555          0 =>
     556          array (
     557            'color' => '#a18cd1',
     558            'position' => '0',
     559          ),
     560          1 =>
     561          array (
     562            'color' => '#fbc2eb',
     563            'position' => '100',
     564          ),
     565        ),
     566        'name' => 'night_fade',
     567        'angle' => '0',
     568      ),
     569      'front-header.hero.style.descendants.outer.background.overlay.gradient_opacity' => 85,
     570      'front-header.hero.style.descendants.outer.background.overlay.enabled' => true,
     571      'front-header.hero.style.padding.top.value' => 100,
     572      'front-header.hero.style.padding.bottom.value' => 100,
     573      'front-header.title.show' => true,
     574      'front-header.title.localProps.content' => 'Discover Our Coffee Blends',
     575      'front-header.title.style.descendants.text.textAlign' => 'left',
     576      'front-header.subtitle.show' => true,
     577      'front-header.subtitle.localProps.content' => 'Lorem ipsum dolor sit amet, at mei dolore tritani repudiandae. In his nemore temporibus consequuntur, vim ad prima vivendum consetetur. Viderer feugiat at pro, mea aperiam.',
     578      'front-header.subtitle.style.descendants.text.textAlign' => 'left',
     579      'front-header.icon_list.localProps.iconList' =>
     580      array (
     581        0 =>
     582        array (
     583          'icon' =>
     584          array (
     585            'name' => 'font-awesome/map-marker',
     586            'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="map-marker" viewBox="0 0 1049.8953 1896.0833"><path d="M768 640q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zm256 0q0 109-33 179l-364 774q-16 33-47.5 52t-67.5 19-67.5-19-46.5-52L33 819Q0 749 0 640q0-212 150-362t362-150 362 150 150 362z"></path></svg>',
     587          ),
     588          'text' => 'Location, State, Country',
     589          'link_value' => 'https://maps.google.com/',
     590          'index' => 0,
     591        ),
     592        1 =>
     593        array (
     594          'icon' =>
     595          array (
     596            'name' => 'font-awesome/phone-square',
     597            'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="phone-square" viewBox="0 0 1536 1896.0833"><path d="M1280 1193q0-11-2-16t-18-16.5-40.5-25-47.5-26.5-45.5-25-28.5-15q-5-3-19-13t-25-15-21-5q-15 0-36.5 20.5t-39.5 45-38.5 45T885 1167q-7 0-16.5-3.5T853 1157t-17-9.5-14-8.5q-99-55-170-126.5T525 842q-2-3-8.5-14t-9.5-17-6.5-15.5T497 779q0-13 20.5-33.5t45-38.5 45-39.5T628 631q0-10-5-21t-15-25-13-19q-3-6-15-28.5T555 492t-26.5-47.5-25-40.5-16.5-18-16-2q-48 0-101 22-46 21-80 94.5T256 631q0 16 2.5 34t5 30.5 9 33 10 29.5 12.5 33 11 30q60 164 216.5 320.5T843 1358q6 2 30 11t33 12.5 29.5 10 33 9 30.5 5 34 2.5q57 0 130.5-34t94.5-80q22-53 22-101zm256-777v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
     598          ),
     599          'text' => '(000) 123 12345',
     600          'link_value' => 'tel:(000) 123 12345',
     601          'index' => 1,
     602        ),
     603        2 =>
     604        array (
     605          'icon' =>
     606          array (
     607            'name' => 'font-awesome/envelope-open-o',
     608            'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="envelope" viewBox="0 0 1792 1896.0833"><path d="M1792 710v794q0 66-47 113t-113 47H160q-66 0-113-47T0 1504V710q44 49 101 87 362 246 497 345 57 42 92.5 65.5t94.5 48 110 24.5h2q51 0 110-24.5t94.5-48 92.5-65.5q170-123 498-345 57-39 100-87zm0-294q0 79-49 151t-122 123q-376 261-468 325-10 7-42.5 30.5t-54 38-52 32.5-57.5 27-50 9h-2q-23 0-50-9t-57.5-27-52-32.5-54-38T639 1015q-91-64-262-182.5T172 690q-62-42-117-115.5T0 438q0-78 41.5-130T160 256h1472q65 0 112.5 47t47.5 113z"></path></svg>',
     609          ),
     610          'text' => 'email@yoursite.com',
     611          'link_value' => 'mailto:email@yoursite.com',
     612          'index' => 2,
     613        ),
     614      ),
     615      'front-header.social_icons.localProps.iconList' =>
     616      array (
     617        0 =>
     618        array (
     619          'icon' =>
     620          array (
     621            'name' => 'font-awesome/facebook-square',
     622            'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="facebook-square" viewBox="0 0 1536 1896.0833"><path d="M1248 128q119 0 203.5 84.5T1536 416v960q0 119-84.5 203.5T1248 1664h-188v-595h199l30-232h-229V689q0-56 23.5-84t91.5-28l122-1V369q-63-9-178-9-136 0-217.5 80T820 666v171H620v232h200v595H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960z"/></svg>',
     623          ),
     624          'link_value' => 'http://www.facebook.com/',
     625          'index' => 0,
     626        ),
     627        1 =>
     628        array (
     629          'icon' =>
     630          array (
     631            'name' => 'font-awesome/twitter-square',
     632            'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="twitter-square" viewBox="0 0 1536 1896.0833"><path d="M1280 610q-56 25-121 34 68-40 93-117-65 38-134 51-61-66-153-66-87 0-148.5 61.5T755 722q0 29 5 48-129-7-242-65T326 550q-29 50-29 106 0 114 91 175-47-1-100-26v2q0 75 50 133.5t123 72.5q-29 8-51 8-13 0-39-4 21 63 74.5 104t121.5 42q-116 90-261 90-26 0-50-3 148 94 322 94 112 0 210-35.5t168-95 120.5-137 75-162T1176 746q0-18-1-27 63-45 105-109zm256-194v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"/></svg>',
     633          ),
     634          'link_value' => 'http://www.twitter.com/',
     635          'index' => 1,
     636        ),
     637        2 =>
     638        array (
     639          'icon' =>
     640          array (
     641            'name' => 'font-awesome/youtube-square',
     642            'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="youtube-square" viewBox="0 0 1536 1896.0833">                                <path d="M919 1303v-157q0-50-29-50-17 0-33 16v224q16 16 33 16 29 0 29-49zm184-122h66v-34q0-51-33-51t-33 51v34zM532 915v70h-80v423h-74V985h-78v-70h232zm201 126v367h-67v-40q-39 45-76 45-33 0-42-28-6-17-6-54v-290h66v270q0 24 1 26 1 15 15 15 20 0 42-31v-280h67zm252 111v146q0 52-7 73-12 42-53 42-35 0-68-41v36h-67V915h67v161q32-40 68-40 41 0 53 42 7 21 7 74zm251 129v9q0 29-2 43-3 22-15 40-27 40-80 40-52 0-81-38-21-27-21-86v-129q0-59 20-86 29-38 80-38t78 38q21 29 21 86v76h-133v65q0 51 34 51 24 0 30-26 0-1 .5-7t.5-16.5V1281h68zM785 457v156q0 51-32 51t-32-51V457q0-52 32-52t32 52zm533 713q0-177-19-260-10-44-43-73.5t-76-34.5q-136-15-412-15-275 0-411 15-44 5-76.5 34.5T238 910q-20 87-20 260 0 176 20 260 10 43 42.5 73t75.5 35q137 15 412 15t412-15q43-5 75.5-35t42.5-73q20-84 20-260zM563 519l90-296h-75l-51 195-53-195h-78q7 23 23 69l24 69q35 103 46 158v201h74V519zm289 81V470q0-58-21-87-29-38-78-38-51 0-78 38-21 29-21 87v130q0 58 21 87 27 38 78 38 49 0 78-38 21-27 21-87zm181 120h67V350h-67v283q-22 31-42 31-15 0-16-16-1-2-1-26V350h-67v293q0 37 6 55 11 27 43 27 36 0 77-45v40zm503-304v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
     643          ),
     644          'link_value' => 'http://www.youtube.com/',
     645          'index' => 2,
     646        ),
     647        3 =>
     648        array (
     649          'icon' =>
     650          array (
     651            'name' => 'font-awesome/vimeo-square',
     652            'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="vimeo-square" viewBox="0 0 1536 1896.0833">                                <path d="M1292 638q10-216-161-222-231-8-312 261 44-19 82-19 85 0 74 96-4 57-74 167t-105 110q-43 0-82-169-13-54-45-255-30-189-160-177-59 7-164 100l-81 72-81 72 52 67q76-52 87-52 57 0 107 179 15 55 45 164.5t45 164.5q68 179 164 179 157 0 383-294 220-283 226-444zm244-222v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
     653          ),
     654          'link_value' => 'http://www.vimeo.com/',
     655          'index' => 3,
     656        ),
     657      ),
     658      'front-header.navigation.props.layoutType' => 'logo-spacing-menu',
     659      'front-header.navigation.props.width' => 'boxed',
     660      'front-header.navigation.style.padding.top.value' => 20,
     661      'front-header.navigation.hidden' => '',
     662      'front-header.navigation.props.showTopBar' => false,
     663      'front-header.hero.image.localProps.url' => '',
     664      'front-header.hero.image.style.descendants.image.boxShadow.layers.0' =>
     665      array (
     666        'x' => 0,
     667        'y' => 0,
     668        'spread' => 20,
     669        'blur' => 0,
     670        'color' => 'rgba(255, 255, 255, 1)',
     671      ),
     672      'front-header.hero.image.style.descendants.image.boxShadow.enabled' => false,
     673      'front-header.hero.image.props.frame.type' => 'border',
     674      'front-header.hero.image.style.descendants.frameImage.backgroundColor' => 'rgba(255, 255, 255, 1)',
     675      'front-header.hero.image.style.descendants.frameImage.width' => 100,
     676      'front-header.hero.image.style.descendants.frameImage.height' => 100,
     677      'front-header.hero.image.style.descendants.frameImage.transform.translate' =>
     678      array (
     679        'x_value' => 10,
     680        'y_value' => 10,
     681      ),
     682      'front-header.hero.image.style.descendants.frameImage.thickness' => 10,
     683      'front-header.hero.image.props.showFrameOverImage' => true,
     684      'front-header.hero.image.props.showFrameShadow' => false,
     685      'front-header.hero.image.props.enabledFrameOption' => true,
     686      'front-header.buttons.show' => true,
     687      'front-header.buttons.value' =>
     688      array (
     689        0 =>
     690        array (
     691          'label' => 'DISCOVER',
     692          'url' => '#',
     693          'button_type' => '0',
     694          'index' => 0,
     695        ),
     696        1 =>
     697        array (
     698          'label' => 'TRY TODAY',
     699          'url' => '#',
     700          'button_type' => '1',
     701          'index' => 1,
     702        ),
     703      ),
     704      'front-header.buttons.style.textAlign' => 'left',
     705      'front-header.hero.style.descendants.outer.separators.separatorBottom.type' => 'tilt',
     706      'front-header.hero.style.descendants.outer.separators.separatorBottom.color' => 'rgba(255,255,255,1)',
     707      'front-header.hero.style.descendants.outer.separators.separatorBottom.height.value' => 220,
     708      'front-header.hero.style.descendants.outer.separators.separatorBottom.enabled' => true,
     709      'front-header.hero.style.descendants.outer.separators.separatorBottom.negative' => false,
     710      'front-header.hero.image.style.descendants.frameImage.transform.translate.x_value' => 10,
     711      'front-header.hero.image.style.descendants.frameImage.transform.translate.y_value' => 10,
     712      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.blur' => 0,
     713      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.color' => '#000000',
     714      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.spread' => 20,
     715      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.x' => 0,
     716      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.y' => 0,
     717      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.angle' => 0,
     718      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.name' => 'night_fade',
     719      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.color' => '#a18cd1',
     720      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.position' => 0,
     721      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.color' => '#fbc2eb',
     722      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.position' => 100,
     723      'front-header.hero.style.descendants.outer.background.overlay.gradient.angle' => 0,
     724      'front-header.hero.style.descendants.outer.background.overlay.gradient.name' => 'night_fade',
     725      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.color' => '#a18cd1',
     726      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.position' => 0,
     727      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.color' => '#fbc2eb',
     728      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.position' => 100,
     729      'front-header.hero.style.descendants.outer.background.overlay.shape.isTile' => false,
     730      'front-header.icon_list.show' => true,
     731      'front-header.navigation.style.padding.top.unit' => 'px',
     732      'front-header.social_icons.show' => true,
     733    ),
     734  ),
     735  3 =>
     736  array (
     737    'image' => '%s/header-4-preview.jpg',
     738    'data' =>
     739    array (
     740      'front-header.logo.props.layoutType' => 'text',
     741      'front-header.header-menu.edit' => '',
     742      'front-header.header-menu.style.descendants.innerMenu.justifyContent' => 'center',
     743      'front-header.header-menu.props.showOffscreenMenuOn' => 'has-offcanvas-mobile',
     744      'front-header.header-menu.props.hoverEffect.type' => 'bordered-active-item bordered-active-item--bottom',
     745      'front-header.header-menu.props.hoverEffect.activeGroup' => 'border',
     746      'front-header.header-menu.props.hoverEffect.group.border.transition' => 'effect-borders-grow grow-from-left',
     747      'front-header.hero.props.heroSection.layout' => 'textOnly',
     748      'front-header.hero.hero_column_width' => 90,
     749      'front-header.hero.full_height' => true,
    997750      'front-header.hero.style.descendants.outer.background.color' => '',
    998       'front-header.hero.style.descendants.outer.background.type' => 'image',
     751      'front-header.hero.style.descendants.outer.background.type' => 'slideshow',
     752      'front-header.hero.style.descendants.outer.background.image.0.source.url' => '%s/images/StockSnap_LV4AFQREZC-hero.jpg',
     753      'front-header.hero.style.descendants.outer.background.image.0.position' => 'center center',
     754      'front-header.hero.style.descendants.outer.background.image.0.attachment' => 'fixed',
     755      'front-header.hero.style.descendants.outer.background.image.0.repeat' => 'no-repeat',
     756      'front-header.hero.style.descendants.outer.background.image.0.size' => 'cover',
     757      'front-header.hero.style.descendants.outer.background.image.0.source.gradient' =>
     758      array (
     759        'steps' =>
     760        array (
     761          0 =>
     762          array (
     763            'color' => '#a18cd1',
     764            'position' => '0',
     765          ),
     766          1 =>
     767          array (
     768            'color' => '#fbc2eb',
     769            'position' => '100',
     770          ),
     771        ),
     772        'name' => 'night_fade',
     773        'angle' => '0',
     774      ),
     775      'front-header.hero.style.descendants.outer.background.slideshow.slides' =>
     776      array (
     777        0 =>
     778        array (
     779          'url' => '%s/images/StockSnap_LV4AFQREZC-hero.jpg',
     780          'index' => 0,
     781        ),
     782        1 =>
     783        array (
     784          'url' => '%s/images/14010286447_a1e0ec0174_hero.jpg',
     785          'index' => 1,
     786        ),
     787        2 =>
     788        array (
     789          'url' => '%s/images/17914308602_3eddd72aa9_hero.jpg',
     790          'index' => 2,
     791        ),
     792      ),
     793      'front-header.hero.style.descendants.outer.background.slideshow.duration.value' => 3000,
     794      'front-header.hero.style.descendants.outer.background.slideshow.speed.value' => 1000,
     795      'front-header.hero.style.descendants.outer.background.video.videoType' => 'external',
     796      'front-header.hero.style.descendants.outer.background.video.externalUrl' => 'https://www.youtube.com/watch?v=xXRy-JQ8G0Y',
     797      'front-header.hero.style.descendants.outer.background.video.internalUrl' => '%s/../videos/demo-video.mp4',
     798      'front-header.hero.style.descendants.outer.background.video.poster.url' => '%s/../images/demo-video-cover.jpg',
     799      'front-header.hero.style.descendants.outer.background.overlay.type' => 'color',
     800      'front-header.hero.style.descendants.outer.background.overlay.shape.value' => 'dots',
     801      'front-header.hero.style.descendants.outer.background.overlay.light' => 30,
     802      'front-header.hero.style.descendants.outer.background.overlay.color.value' => 'rgba(0,0,0,0.3)',
     803      'front-header.hero.style.descendants.outer.background.overlay.gradient' =>
     804      array (
     805        'steps' =>
     806        array (
     807          0 =>
     808          array (
     809            'color' => '#a18cd1',
     810            'position' => '0',
     811          ),
     812          1 =>
     813          array (
     814            'color' => '#fbc2eb',
     815            'position' => '100',
     816          ),
     817        ),
     818        'name' => 'night_fade',
     819        'angle' => '0',
     820      ),
     821      'front-header.hero.style.descendants.outer.background.overlay.gradient_opacity' => 50,
     822      'front-header.hero.style.descendants.outer.background.overlay.enabled' => true,
     823      'front-header.hero.style.padding.top.value' => 100,
     824      'front-header.hero.style.padding.bottom.value' => 100,
     825      'front-header.title.show' => true,
     826      'front-header.title.localProps.content' => 'World Performance',
     827      'front-header.title.style.descendants.text.textAlign' => 'center',
     828      'front-header.subtitle.show' => true,
     829      'front-header.subtitle.localProps.content' => 'Lorem ipsum dolor sit amet, at mei dolore tritani repudiandae. In his nemore temporibus consequuntur, vim ad prima vivendum consetetur. Viderer feugiat at pro, mea aperiam.',
     830      'front-header.subtitle.style.descendants.text.textAlign' => 'center',
     831      'front-header.icon_list.localProps.iconList' =>
     832      array (
     833        0 =>
     834        array (
     835          'icon' =>
     836          array (
     837            'name' => 'font-awesome/map-marker',
     838            'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="map-marker" viewBox="0 0 1049.8953 1896.0833"><path d="M768 640q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zm256 0q0 109-33 179l-364 774q-16 33-47.5 52t-67.5 19-67.5-19-46.5-52L33 819Q0 749 0 640q0-212 150-362t362-150 362 150 150 362z"></path></svg>',
     839          ),
     840          'text' => 'Location, State, Country',
     841          'link_value' => 'https://maps.google.com/',
     842          'index' => 0,
     843        ),
     844        1 =>
     845        array (
     846          'icon' =>
     847          array (
     848            'name' => 'font-awesome/phone-square',
     849            'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="phone-square" viewBox="0 0 1536 1896.0833"><path d="M1280 1193q0-11-2-16t-18-16.5-40.5-25-47.5-26.5-45.5-25-28.5-15q-5-3-19-13t-25-15-21-5q-15 0-36.5 20.5t-39.5 45-38.5 45T885 1167q-7 0-16.5-3.5T853 1157t-17-9.5-14-8.5q-99-55-170-126.5T525 842q-2-3-8.5-14t-9.5-17-6.5-15.5T497 779q0-13 20.5-33.5t45-38.5 45-39.5T628 631q0-10-5-21t-15-25-13-19q-3-6-15-28.5T555 492t-26.5-47.5-25-40.5-16.5-18-16-2q-48 0-101 22-46 21-80 94.5T256 631q0 16 2.5 34t5 30.5 9 33 10 29.5 12.5 33 11 30q60 164 216.5 320.5T843 1358q6 2 30 11t33 12.5 29.5 10 33 9 30.5 5 34 2.5q57 0 130.5-34t94.5-80q22-53 22-101zm256-777v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
     850          ),
     851          'text' => '(000) 123 12345',
     852          'link_value' => 'tel:(000) 123 12345',
     853          'index' => 1,
     854        ),
     855        2 =>
     856        array (
     857          'icon' =>
     858          array (
     859            'name' => 'font-awesome/envelope-open-o',
     860            'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="envelope" viewBox="0 0 1792 1896.0833"><path d="M1792 710v794q0 66-47 113t-113 47H160q-66 0-113-47T0 1504V710q44 49 101 87 362 246 497 345 57 42 92.5 65.5t94.5 48 110 24.5h2q51 0 110-24.5t94.5-48 92.5-65.5q170-123 498-345 57-39 100-87zm0-294q0 79-49 151t-122 123q-376 261-468 325-10 7-42.5 30.5t-54 38-52 32.5-57.5 27-50 9h-2q-23 0-50-9t-57.5-27-52-32.5-54-38T639 1015q-91-64-262-182.5T172 690q-62-42-117-115.5T0 438q0-78 41.5-130T160 256h1472q65 0 112.5 47t47.5 113z"></path></svg>',
     861          ),
     862          'text' => 'email@yoursite.com',
     863          'link_value' => 'mailto:email@yoursite.com',
     864          'index' => 2,
     865        ),
     866      ),
     867      'front-header.social_icons.localProps.iconList' =>
     868      array (
     869        0 =>
     870        array (
     871          'icon' =>
     872          array (
     873            'name' => 'font-awesome/facebook-square',
     874            'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="facebook-square" viewBox="0 0 1536 1896.0833"><path d="M1248 128q119 0 203.5 84.5T1536 416v960q0 119-84.5 203.5T1248 1664h-188v-595h199l30-232h-229V689q0-56 23.5-84t91.5-28l122-1V369q-63-9-178-9-136 0-217.5 80T820 666v171H620v232h200v595H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960z"/></svg>',
     875          ),
     876          'link_value' => 'http://www.facebook.com/',
     877          'index' => 0,
     878        ),
     879        1 =>
     880        array (
     881          'icon' =>
     882          array (
     883            'name' => 'font-awesome/twitter-square',
     884            'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="twitter-square" viewBox="0 0 1536 1896.0833"><path d="M1280 610q-56 25-121 34 68-40 93-117-65 38-134 51-61-66-153-66-87 0-148.5 61.5T755 722q0 29 5 48-129-7-242-65T326 550q-29 50-29 106 0 114 91 175-47-1-100-26v2q0 75 50 133.5t123 72.5q-29 8-51 8-13 0-39-4 21 63 74.5 104t121.5 42q-116 90-261 90-26 0-50-3 148 94 322 94 112 0 210-35.5t168-95 120.5-137 75-162T1176 746q0-18-1-27 63-45 105-109zm256-194v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"/></svg>',
     885          ),
     886          'link_value' => 'http://www.twitter.com/',
     887          'index' => 1,
     888        ),
     889        2 =>
     890        array (
     891          'icon' =>
     892          array (
     893            'name' => 'font-awesome/youtube-square',
     894            'content' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="youtube-square" viewBox="0 0 1536 1896.0833">                                <path d="M919 1303v-157q0-50-29-50-17 0-33 16v224q16 16 33 16 29 0 29-49zm184-122h66v-34q0-51-33-51t-33 51v34zM532 915v70h-80v423h-74V985h-78v-70h232zm201 126v367h-67v-40q-39 45-76 45-33 0-42-28-6-17-6-54v-290h66v270q0 24 1 26 1 15 15 15 20 0 42-31v-280h67zm252 111v146q0 52-7 73-12 42-53 42-35 0-68-41v36h-67V915h67v161q32-40 68-40 41 0 53 42 7 21 7 74zm251 129v9q0 29-2 43-3 22-15 40-27 40-80 40-52 0-81-38-21-27-21-86v-129q0-59 20-86 29-38 80-38t78 38q21 29 21 86v76h-133v65q0 51 34 51 24 0 30-26 0-1 .5-7t.5-16.5V1281h68zM785 457v156q0 51-32 51t-32-51V457q0-52 32-52t32 52zm533 713q0-177-19-260-10-44-43-73.5t-76-34.5q-136-15-412-15-275 0-411 15-44 5-76.5 34.5T238 910q-20 87-20 260 0 176 20 260 10 43 42.5 73t75.5 35q137 15 412 15t412-15q43-5 75.5-35t42.5-73q20-84 20-260zM563 519l90-296h-75l-51 195-53-195h-78q7 23 23 69l24 69q35 103 46 158v201h74V519zm289 81V470q0-58-21-87-29-38-78-38-51 0-78 38-21 29-21 87v130q0 58 21 87 27 38 78 38 49 0 78-38 21-27 21-87zm181 120h67V350h-67v283q-22 31-42 31-15 0-16-16-1-2-1-26V350h-67v293q0 37 6 55 11 27 43 27 36 0 77-45v40zm503-304v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
     895          ),
     896          'link_value' => 'http://www.youtube.com/',
     897          'index' => 2,
     898        ),
     899        3 =>
     900        array (
     901          'icon' =>
     902          array (
     903            'name' => 'font-awesome/vimeo-square',
     904            'content' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="vimeo-square" viewBox="0 0 1536 1896.0833">                                <path d="M1292 638q10-216-161-222-231-8-312 261 44-19 82-19 85 0 74 96-4 57-74 167t-105 110q-43 0-82-169-13-54-45-255-30-189-160-177-59 7-164 100l-81 72-81 72 52 67q76-52 87-52 57 0 107 179 15 55 45 164.5t45 164.5q68 179 164 179 157 0 383-294 220-283 226-444zm244-222v960q0 119-84.5 203.5T1248 1664H288q-119 0-203.5-84.5T0 1376V416q0-119 84.5-203.5T288 128h960q119 0 203.5 84.5T1536 416z"></path></svg>',
     905          ),
     906          'link_value' => 'http://www.vimeo.com/',
     907          'index' => 3,
     908        ),
     909      ),
     910      'front-header.navigation.props.layoutType' => 'logo-spacing-menu',
     911      'front-header.navigation.props.width' => 'boxed',
     912      'front-header.navigation.style.padding.top.value' => 20,
     913      'front-header.navigation.hidden' => '',
     914      'front-header.navigation.props.showTopBar' => false,
     915      'front-header.hero.image.localProps.url' => '',
     916      'front-header.hero.image.style.descendants.image.boxShadow.layers.0' =>
     917      array (
     918        'x' => 0,
     919        'y' => 0,
     920        'spread' => 20,
     921        'blur' => 0,
     922        'color' => 'rgba(255, 255, 255, 1)',
     923      ),
     924      'front-header.hero.image.style.descendants.image.boxShadow.enabled' => false,
     925      'front-header.hero.image.props.frame.type' => 'border',
     926      'front-header.hero.image.style.descendants.frameImage.backgroundColor' => 'rgba(255, 255, 255, 1)',
     927      'front-header.hero.image.style.descendants.frameImage.width' => 100,
     928      'front-header.hero.image.style.descendants.frameImage.height' => 100,
     929      'front-header.hero.image.style.descendants.frameImage.transform.translate' =>
     930      array (
     931        'x_value' => 10,
     932        'y_value' => 10,
     933      ),
     934      'front-header.hero.image.style.descendants.frameImage.thickness' => 10,
     935      'front-header.hero.image.props.showFrameOverImage' => true,
     936      'front-header.hero.image.props.showFrameShadow' => false,
     937      'front-header.hero.image.props.enabledFrameOption' => false,
     938      'front-header.buttons.show' => true,
     939      'front-header.buttons.value' =>
     940      array (
     941        0 =>
     942        array (
     943          'label' => 'Read More',
     944          'url' => '#',
     945          'button_type' => '0',
     946          'index' => 0,
     947        ),
     948      ),
     949      'front-header.buttons.style.textAlign' => 'center',
     950      'front-header.hero.style.descendants.outer.separators.separatorBottom.type' => 'tilt',
     951      'front-header.hero.style.descendants.outer.separators.separatorBottom.color' => 'rgba(255, 255, 255, 1)',
     952      'front-header.hero.style.descendants.outer.separators.separatorBottom.height.value' => 100,
     953      'front-header.hero.style.descendants.outer.separators.separatorBottom.enabled' => false,
     954      'front-header.hero.style.descendants.outer.separators.separatorBottom.negative' => false,
     955      'front-header.hero.image.style.descendants.frameImage.transform.translate.x_value' => 10,
     956      'front-header.hero.image.style.descendants.frameImage.transform.translate.y_value' => 10,
     957      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.blur' => 0,
     958      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.color' => '#000000',
     959      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.spread' => 20,
     960      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.x' => 0,
     961      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.y' => 0,
     962      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.angle' => 0,
     963      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.name' => 'night_fade',
     964      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.color' => '#a18cd1',
     965      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.position' => 0,
     966      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.color' => '#fbc2eb',
     967      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.position' => 100,
     968      'front-header.hero.style.descendants.outer.background.overlay.gradient.angle' => 0,
     969      'front-header.hero.style.descendants.outer.background.overlay.gradient.name' => 'night_fade',
     970      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.color' => '#a18cd1',
     971      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.position' => 0,
     972      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.color' => '#fbc2eb',
     973      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.position' => 100,
     974      'front-header.hero.style.descendants.outer.background.overlay.shape.isTile' => false,
     975      'front-header.icon_list.show' => true,
     976      'front-header.navigation.style.padding.top.unit' => 'px',
     977      'front-header.social_icons.show' => true,
     978    ),
     979  ),
     980  4 =>
     981  array (
     982    'image' => '%s/header-5-preview.jpg',
     983    'data' =>
     984    array (
     985      'front-header.logo.props.layoutType' => 'text',
     986      'front-header.header-menu.edit' => '',
     987      'front-header.header-menu.style.descendants.innerMenu.justifyContent' => 'center',
     988      'front-header.header-menu.props.showOffscreenMenuOn' => 'has-offcanvas-mobile',
     989      'front-header.header-menu.props.hoverEffect.type' => 'bordered-active-item bordered-active-item--bottom',
     990      'front-header.header-menu.props.hoverEffect.activeGroup' => 'border',
     991      'front-header.header-menu.props.hoverEffect.group.border.transition' => 'effect-borders-grow grow-from-left',
     992      'front-header.hero.props.heroSection.layout' => 'textWithMediaOnLeft',
     993      'front-header.hero.hero_column_width' => 50,
     994      'front-header.hero.full_height' => true,
     995      'front-header.hero.style.descendants.outer.background.color' => 'rgba(130,75,69,0.5)',
     996      'front-header.hero.style.descendants.outer.background.type' => 'color',
    999997      'front-header.hero.style.descendants.outer.background.image.0.source.url' => '%s/images/hero-1.jpeg',
    1000998      'front-header.hero.style.descendants.outer.background.image.0.position' => 'center center',
     
    10671065      ),
    10681066      'front-header.hero.style.descendants.outer.background.overlay.gradient_opacity' => 50,
    1069       'front-header.hero.style.descendants.outer.background.overlay.enabled' => true,
     1067      'front-header.hero.style.descendants.outer.background.overlay.enabled' => false,
    10701068      'front-header.hero.style.padding.top.value' => 100,
    1071       'front-header.hero.style.padding.bottom.value' => 150,
     1069      'front-header.hero.style.padding.bottom.value' => 100,
    10721070      'front-header.title.show' => true,
    1073       'front-header.title.localProps.content' => 'Your awesome site title goes here.',
    1074       'front-header.title.style.descendants.text.textAlign' => 'center',
     1071      'front-header.title.localProps.content' => 'Your Guide to Floral Beauty',
     1072      'front-header.title.style.descendants.text.textAlign' => 'left',
    10751073      'front-header.subtitle.show' => true,
    1076       'front-header.subtitle.localProps.content' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enimnad minim veniam, quis nostrud exercitation ullamco laboris nisi.',
    1077       'front-header.subtitle.style.descendants.text.textAlign' => 'center',
     1074      'front-header.subtitle.localProps.content' => 'Lorem ipsum dolor sit amet, at mei dolore tritani repudiandae. In his nemore temporibus consequuntur, vim ad prima.',
     1075      'front-header.subtitle.style.descendants.text.textAlign' => 'left',
    10781076      'front-header.icon_list.localProps.iconList' =>
    10791077      array (
     
    11601158      'front-header.navigation.hidden' => '',
    11611159      'front-header.navigation.props.showTopBar' => false,
    1162       'front-header.hero.image.localProps.url' => '',
     1160      'front-header.hero.image.localProps.url' => '%s/images/image-from-rawpixel-id-843203-hero.jpg',
    11631161      'front-header.hero.image.style.descendants.image.boxShadow.layers.0' =>
    11641162      array (
    1165         'x' => 0,
    1166         'y' => 0,
    1167         'spread' => 20,
    1168         'blur' => 0,
    1169         'color' => 'rgba(255, 255, 255, 1)',
    1170       ),
    1171       'front-header.hero.image.style.descendants.image.boxShadow.enabled' => false,
     1163        'x' => -27,
     1164        'y' => 20,
     1165        'spread' => 0,
     1166        'blur' => 85,
     1167        'color' => '#A26B6B',
     1168      ),
     1169      'front-header.hero.image.style.descendants.image.boxShadow.enabled' => true,
    11721170      'front-header.hero.image.props.frame.type' => 'border',
    11731171      'front-header.hero.image.style.descendants.frameImage.backgroundColor' => 'rgba(255, 255, 255, 1)',
     
    11761174      'front-header.hero.image.style.descendants.frameImage.transform.translate' =>
    11771175      array (
    1178         'x_value' => 10,
    1179         'y_value' => 10,
    1180       ),
    1181       'front-header.hero.image.style.descendants.frameImage.thickness' => 10,
    1182       'front-header.hero.image.props.showFrameOverImage' => true,
     1176        'x_value' => -5,
     1177        'y_value' => -3,
     1178      ),
     1179      'front-header.hero.image.style.descendants.frameImage.thickness' => 2,
     1180      'front-header.hero.image.props.showFrameOverImage' => false,
    11831181      'front-header.hero.image.props.showFrameShadow' => false,
    1184       'front-header.hero.image.props.enabledFrameOption' => false,
     1182      'front-header.hero.image.props.enabledFrameOption' => true,
    11851183      'front-header.buttons.show' => true,
    11861184      'front-header.buttons.value' =>
     
    11881186        0 =>
    11891187        array (
    1190           'label' => 'Get started today',
    1191           'url' => '#',
    1192           'button_type' => '0',
    1193           'index' => 0,
    1194         ),
    1195         1 =>
    1196         array (
    1197           'label' => 'Learn more',
     1188          'label' => 'Read More',
    11981189          'url' => '#',
    11991190          'button_type' => '1',
     
    12011192        ),
    12021193      ),
    1203       'front-header.buttons.style.textAlign' => 'center',
     1194      'front-header.buttons.style.textAlign' => 'left',
    12041195      'front-header.hero.style.descendants.outer.separators.separatorBottom.type' => 'tilt',
    12051196      'front-header.hero.style.descendants.outer.separators.separatorBottom.color' => 'rgba(255, 255, 255, 1)',
     
    12071198      'front-header.hero.style.descendants.outer.separators.separatorBottom.enabled' => false,
    12081199      'front-header.hero.style.descendants.outer.separators.separatorBottom.negative' => false,
    1209       'front-header.navigation.style.padding.top.unit' => 'px',
     1200      'front-header.hero.image.style.descendants.frameImage.transform.translate.x_value' => 10,
     1201      'front-header.hero.image.style.descendants.frameImage.transform.translate.y_value' => 10,
     1202      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.blur' => 0,
     1203      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.color' => '#000000',
     1204      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.spread' => 20,
     1205      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.x' => 0,
     1206      'front-header.hero.image.style.descendants.image.boxShadow.layers.0.y' => 0,
     1207      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.angle' => 0,
     1208      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.name' => 'night_fade',
     1209      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.color' => '#a18cd1',
     1210      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.position' => 0,
     1211      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.color' => '#fbc2eb',
     1212      'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.position' => 100,
     1213      'front-header.hero.style.descendants.outer.background.overlay.gradient.angle' => 0,
    12101214      'front-header.hero.style.descendants.outer.background.overlay.gradient.name' => 'night_fade',
    1211       'front-header.hero.style.descendants.outer.background.overlay.gradient.angle' => 0,
    12121215      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.color' => '#a18cd1',
    12131216      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.0.position' => 0,
     
    12151218      'front-header.hero.style.descendants.outer.background.overlay.gradient.steps.1.position' => 100,
    12161219      'front-header.hero.style.descendants.outer.background.overlay.shape.isTile' => false,
    1217       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.name' => 'night_fade',
    1218       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.angle' => 0,
    1219       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.color' => '#a18cd1',
    1220       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.0.position' => 0,
    1221       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.color' => '#fbc2eb',
    1222       'front-header.hero.style.descendants.outer.background.image.0.source.gradient.steps.1.position' => 100,
    1223       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.x' => 0,
    1224       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.y' => 0,
    1225       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.spread' => 20,
    1226       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.blur' => 0,
    1227       'front-header.hero.image.style.descendants.image.boxShadow.layers.0.color' => '#000000',
    1228       'front-header.hero.image.style.descendants.frameImage.transform.translate.x_value' => 10,
    1229       'front-header.hero.image.style.descendants.frameImage.transform.translate.y_value' => 10,
     1220      'front-header.icon_list.show' => true,
     1221      'front-header.navigation.style.padding.top.unit' => 'px',
    12301222      'front-header.social_icons.show' => true,
    1231       'front-header.icon_list.show' => true,
    12321223    ),
    12331224  ),
  • kubio/1.0.33/inc/defaults.php

    r216227 r242135  
    626626    'blog_posts_per_row'                => 2,
    627627    'blog_enable_masonry'               => true,
     628    'front_page_designs'                => array(
     629        array(
     630            'name'    => __( 'Modern', 'kubio' ),
     631            'index'   => 1,
     632            'preview' => 'front-page-1.jpg',
     633        ),
     634
     635        array(
     636            'name'    => __( 'Fullscreen', 'kubio' ),
     637            'index'   => 2,
     638            'preview' => 'front-page-2.jpg',
     639        ),
     640
     641        array(
     642            'name'    => __( 'Classic', 'kubio' ),
     643            'index'   => 3,
     644            'preview' => 'front-page-3.jpg',
     645        ),
     646
     647        array(
     648            'name'    => __( '', 'kubio' ),
     649            'index'   => 4,
     650            'preview' => 'admin/ai-icon.svg',
     651        ),
     652    ),
    628653);
  • kubio/1.0.33/inc/translations.php

    r222950 r242135  
    300300    'benefit_4'                               => __( 'Contact form and social media integration', 'kubio' ),
    301301    'start_with_a_front_page_plugin_info'     => __(
    302         '%s theme is powered by Kubio Page Builder, which will be installed when selecting the above.',
     302        'Any of these actions will also install the Kubio Page Builder plugin.',
    303303        'kubio'
    304304    ),
     305    'start_with_selected_page'                => __( 'Start with selected option', 'kubio' ),
    305306
    306307    'undefined_sanitize_function_for_control' => __(
  • kubio/1.0.33/lib/colibriwp/src/Theme.php

    r216227 r242135  
    247247            ?>
    248248            <div class="notice notice-success is-dismissible colibri-admin-big-notice notice-large">
    249                 <?php View::make( 'admin/admin-notice' ); ?>
     249                <?php View::make( 'admin/admin-notice-frontpage' ); ?>
    250250            </div>
    251251            <?php
  • kubio/1.0.33/lib/kubio-themebase/src/Theme.php

    r222950 r242135  
    6464
    6565        $slug = get_template() . '-page-info';
     66        $is_fresh_site = !$this->themeWasCustomized();
     67
     68        if ( !$is_fresh_site ) {
     69            return false;
     70        }
    6671
    6772        if ( get_option( "{$slug}-theme-notice-dismissed", false ) !== false ) {
     
    8590            ?>
    8691            <div class="notice notice-success is-dismissible kubio-admin-big-notice notice-large">
    87                 <?php View::make( 'admin/admin-notice' ); ?>
     92                <?php View::make( 'admin/admin-notice-frontpage' ); ?>
    8893            </div>
    8994            <script>
  • kubio/1.0.33/resources/admin/admin.css

    r216227 r242135  
    1 .colibri-customizer-overlay{background:rgba(19,94,150,.4);display:none;height:100%;left:0;position:fixed;top:0;width:100%;z-index:10000000}.colibri-customizer-overlay-message{background:#fff;border-radius:8px;color:#135e96;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;font-weight:700;letter-spacing:.5px;margin-top:16px;padding:.5em 1.5em}.colibri-customizer-overlay-loader{--dimension:50px;--border-width:4px;-webkit-animation:colibri-adminspin 2s linear infinite;animation:colibri-adminspin 2s linear infinite;border-top:var(--border-width) solid #fff;border:var(--border-width) solid #fff;border-radius:50%;border-top-color:#135e96;box-shadow:inset 0 0 0 calc(var(--border-width)/2) #fff;display:inline-block;height:var(--dimension);outline:calc(var(--border-width)/2) solid #fff;outline-offset:-1px;width:var(--dimension)}.colibri-customizer-overlay-content{align-items:center;display:flex;flex-direction:column;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}@-webkit-keyframes colibri-adminspin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes colibri-adminspin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.update-nag{display:none}.kubio-admin-big-notice{border-left:1px solid #c3c4c7;color:#15192b;display:none;padding:0!important}.kubio-admin-big-notice .kubio-notice-dont-show-container{display:flex;justify-content:flex-end;margin-right:38px;padding:9px}.kubio-admin-big-notice .kubio-admin-notice-spacer{overflow:hidden;padding-bottom:0}.kubio-admin-big-notice .kubio-admin-notice-spacer .title-holder h1,.kubio-admin-big-notice .kubio-admin-notice-spacer .title-holder p{color:inherit;padding:0}.kubio-admin-big-notice .kubio-admin-notice-spacer .title-holder h1{font-size:24px;font-weight:700}.kubio-admin-big-notice .kubio-admin-notice-spacer .title-holder p{font-size:14px;margin:10px 0 0}.kubio-admin-big-notice,.kubio-admin-big-notice *{box-sizing:border-box}.kubio-admin-big-notice .notice-dismiss{color:#fff;left:auto!important;position:absolute}.kubio-admin-big-notice.processing .notice-dismiss{display:none}.kubio-admin-big-notice .or-separator{display:inline-block;height:46px;line-height:46px;padding:0 10px}.kubio-admin-big-notice--container{position:relative;width:100%}.kubio-admin-big-notice--container .content-holder{align-items:flex-end;display:flex;justify-content:space-between}.kubio-admin-big-notice--container .content-holder .messages-area{margin-bottom:45px;margin-top:20px;padding-left:50px}.kubio-admin-big-notice--container .content-holder .messages-area ul{margin:20px 0}.kubio-admin-big-notice--container .content-holder .messages-area ul li{font-size:14px;line-height:24px;margin-bottom:0}.kubio-admin-big-notice--container .content-holder .messages-area ul li img{margin-right:16px}.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons{align-items:center;display:flex;gap:30px}@media (max-width:1254px){.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons{align-items:flex-start;flex-direction:column;gap:10px;justify-content:flex-start}}.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons button{line-height:unset;min-height:40px}.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons button.start-with-predefined-design-button{padding-left:0;padding-right:0}.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons a{color:#007cba;font-size:14px;font-weight:600;-webkit-text-decoration-color:#007cba;text-decoration-color:#007cba}.kubio-admin-big-notice--container .content-holder .front-page-preview img{display:block;max-width:670px;min-width:460px;width:35vw}.kubio-admin-big-notice--container .content-holder .kubio-front-page-preview-browser-bar{align-items:center;background-color:#f3f3f7;border-radius:4px 4px 0 0;display:flex;flex-basis:20px;height:20px;min-height:20px}.kubio-admin-big-notice--container .content-holder .kubio-front-page-preview-browser-dot{background:#000;border-radius:100%;height:3px;margin-left:7px;width:3px}.kubio-admin-big-notice--container .content-holder .kubio-front-page-preview-image-scroller{background:#fff;flex-basis:calc(100% - 20px);flex-grow:1;flex-shrink:0;height:calc(100% - 20px);overflow:hidden;position:relative;width:100%}.kubio-admin-big-notice--container .content-holder .kubio-front-page-preview-image-scroller img{left:0;max-width:100%;position:absolute;top:0;width:100%}.kubio-admin-big-notice--container .content-footer p.description{color:#727272;font-size:12px;font-weight:400;margin:23px 0 0}.kubio-admin-big-notice--container .content-footer .plugin-notice{display:none;margin-left:auto;margin-right:auto;margin-top:10px;padding:4px 10px}.kubio-admin-big-notice--container .content-footer .plugin-notice .spinner{float:none;margin-left:0;margin-right:5px;margin-top:0;visibility:visible}.kubio-design-imported-notice{align-items:center;background:#fff;border:1px solid #c3c4c7;border-left:4px solid #00a32a;box-shadow:0 25px 25px rgba(0,0,0,.2);display:flex;margin-bottom:2rem;padding:1px 12px}.kubio-design-imported--message{flex-grow:1;padding:2rem 2rem 2rem 0}.kubio-design-imported--message h2{display:block;font-size:1.6rem;line-height:110%;margin:0;padding:0}.kubio-design-imported--message p{margin:.5rem 0 0;padding:0}@-webkit-keyframes kubio-preview-image-scroll{0%{transform:translateY(0)}50%{transform:translateY(calc(-100% + 240px))}}@keyframes kubio-preview-image-scroll{0%{transform:translateY(0)}50%{transform:translateY(calc(-100% + 240px))}}
     1@charset "UTF-8";.colibri-customizer-overlay{background:rgba(19,94,150,.4);display:none;height:100%;left:0;position:fixed;top:0;width:100%;z-index:10000000}.colibri-customizer-overlay-message{background:#fff;border-radius:8px;color:#135e96;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;font-weight:700;letter-spacing:.5px;margin-top:16px;padding:.5em 1.5em}.colibri-customizer-overlay-loader{--dimension:50px;--border-width:4px;-webkit-animation:colibri-adminspin 2s linear infinite;animation:colibri-adminspin 2s linear infinite;border-top:var(--border-width) solid #fff;border:var(--border-width) solid #fff;border-radius:50%;border-top-color:#135e96;box-shadow:inset 0 0 0 calc(var(--border-width)/2) #fff;display:inline-block;height:var(--dimension);outline:calc(var(--border-width)/2) solid #fff;outline-offset:-1px;width:var(--dimension)}.colibri-customizer-overlay-content{align-items:center;display:flex;flex-direction:column;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}@-webkit-keyframes colibri-adminspin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes colibri-adminspin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.kubio-admin-big-notice--container .logo-holder h2{font-size:24px;font-weight:700;line-height:22px;margin-bottom:0;margin-top:10px}.kubio-admin-big-notice--container .logo-image{border-radius:100%;box-shadow:0 0 5px 2px #fff}.kubio-admin-big-notice--container .content-holder .predefined-front-pages{align-items:center;display:flex;flex:0 1 auto;gap:30px;margin:25px 0;width:100%}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li{flex-basis:218px;max-width:218px}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li:last-of-type{margin-left:60px;position:relative}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li:last-of-type:before{content:"or";font-size:14px;font-weight:600;left:-55px;line-height:1;pointer-events:none;position:absolute;text-transform:uppercase;top:49%}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li:hover{cursor:pointer}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li:has(.predefined-front-page-card-header .design-title:not(:empty)):last-of-type .predefined-front-page-card{height:190px}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li:has(.predefined-front-page-card-header .design-title:not(:empty)):last-of-type .design-preview-image{box-shadow:none;height:50px;margin-top:45px;padding-top:0}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li:has(.predefined-front-page-card-header .design-title:not(:empty)):last-of-type .predefined-front-page-card-header{display:none}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li:has(.predefined-front-page-card-header .design-title:not(:empty)):last-of-type .predefined-front-page-card-footer .design-content{font-size:14px;font-weight:600;margin-top:25px;padding:0 15px;text-align:center}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li .predefined-front-page-card{background-color:#f4f4f7;border:1px solid #f4f4f7;border-radius:8px;overflow:hidden}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li .predefined-front-page-card .predefined-front-page-card-header{font-size:14px;padding:22px}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li .predefined-front-page-card .predefined-front-page-card-header h3{margin:0;text-align:center}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li .front-page-design-wrapper{cursor:pointer;position:relative}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li .selected-badge{border-color:transparent #5246f1 transparent transparent;border-style:solid;border-width:0 45px 45px 0;height:0;opacity:0;position:absolute;right:0;top:0;width:0;z-index:1}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li .selected-badge:after{color:#fff;content:"";font-family:dashicons;font-size:22px;left:19px;position:absolute;top:5px}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li.selected .predefined-front-page-card{--card-border-color:#5246f1;border:1px solid var(--card-border-color);position:relative}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li.selected .selected-badge{opacity:1}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li .front-page-design-wrapper .design-preview-image{background-color:transparent;background-position:top;background-repeat:no-repeat;background-size:contain;box-shadow:0 0 10px -4px;margin-left:21px;margin-right:22px;padding-top:130px}.kubio-admin-big-notice--container .content-holder .predefined-front-pages li .design-title a{color:#23282d;text-decoration:none}.kubio-admin-big-notice--container .content-footer p.description{margin-top:1em}.update-nag{display:none}.kubio-admin-big-notice{--notice-accent-color:#5246f1;border-bottom-left-radius:2px;border-left:1px solid #c3c4c7;border-left:5px solid var(--notice-accent-color);border-top-left-radius:2px;color:#15192b;display:none;padding:26px 35px}.kubio-admin-big-notice .kubio-notice-dont-show-container{display:flex;justify-content:flex-end;margin-right:38px;padding:9px}.kubio-admin-big-notice .kubio-admin-notice-spacer{overflow:hidden;padding-bottom:0}.kubio-admin-big-notice .kubio-admin-notice-spacer .title-holder h1,.kubio-admin-big-notice .kubio-admin-notice-spacer .title-holder p{color:inherit;padding:0}.kubio-admin-big-notice .kubio-admin-notice-spacer .title-holder h1{font-size:24px;font-weight:700}.kubio-admin-big-notice .kubio-admin-notice-spacer .title-holder p{font-size:14px;margin:10px 0 0}.kubio-admin-big-notice,.kubio-admin-big-notice *{box-sizing:border-box}.kubio-admin-big-notice .notice-dismiss{color:#fff;left:auto!important;position:absolute}.kubio-admin-big-notice.processing .notice-dismiss{display:none}.kubio-admin-big-notice .or-separator{display:inline-block;font-size:14px;font-weight:600;height:46px;line-height:46px;text-transform:uppercase}.kubio-admin-big-notice--container{position:relative;width:100%}.kubio-admin-big-notice--container .content-holder{align-items:flex-end;display:flex;justify-content:space-between}.kubio-admin-big-notice--container .content-holder .messages-area{margin-bottom:45px;margin-top:20px;padding-left:50px}.kubio-admin-big-notice--container .content-holder .messages-area ul{margin:20px 0}.kubio-admin-big-notice--container .content-holder .messages-area ul li{font-size:14px;line-height:24px;margin-bottom:0}.kubio-admin-big-notice--container .content-holder .messages-area ul li img{margin-right:16px}.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons{align-items:center;display:flex;gap:30px}@media (max-width:1254px){.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons{align-items:flex-start;flex-direction:column;gap:10px;justify-content:flex-start}}.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons button{line-height:unset;min-height:40px}.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons button.start-with-predefined-design-button{padding-left:0;padding-right:0}.kubio-admin-big-notice--container .content-holder .messages-area .action-buttons a{color:var(--notice-accecnt-color);font-size:14px;font-weight:600;-webkit-text-decoration-color:var(--notice-accecnt-color);text-decoration-color:var(--notice-accecnt-color)}.kubio-admin-big-notice--container .content-holder .front-page-preview img{display:block;max-width:670px;min-width:460px;width:35vw}.kubio-admin-big-notice--container .content-holder .kubio-front-page-preview-browser-bar{align-items:center;background-color:#f3f3f7;border-radius:4px 4px 0 0;display:flex;flex-basis:20px;height:20px;min-height:20px}.kubio-admin-big-notice--container .content-holder .kubio-front-page-preview-browser-dot{background:#000;border-radius:100%;height:3px;margin-left:7px;width:3px}.kubio-admin-big-notice--container .content-holder .kubio-front-page-preview-image-scroller{background:#fff;flex-basis:calc(100% - 20px);flex-grow:1;flex-shrink:0;height:calc(100% - 20px);overflow:hidden;position:relative;width:100%}.kubio-admin-big-notice--container .content-holder .kubio-front-page-preview-image-scroller img{left:0;max-width:100%;position:absolute;top:0;width:100%}.kubio-admin-big-notice--container .content-footer p.description{color:#727272;font-size:12px;font-weight:400;margin:23px 0 0}.kubio-admin-big-notice--container .content-footer .plugin-notice{display:none;margin-left:auto;margin-right:auto;margin-top:10px;padding:4px 10px}.kubio-admin-big-notice--container .content-footer .plugin-notice .spinner{float:none;margin-left:0;margin-right:5px;margin-top:0;visibility:visible}.kubio-admin-big-notice .action-buttons{align-items:center;display:flex;gap:30px}.kubio-admin-big-notice .action-buttons .button-hero{background-color:var(--notice-accent-color)}.kubio-admin-big-notice .action-buttons a{color:#1e1e1e;font-size:14px;font-weight:600;text-decoration:underline}.kubio-admin-big-notice .action-buttons a:hover{cursor:pointer}.kubio-design-imported-notice{align-items:center;background:#fff;border:1px solid #c3c4c7;border-left:4px solid #00a32a;box-shadow:0 25px 25px rgba(0,0,0,.2);display:flex;margin-bottom:2rem;padding:1px 12px}.kubio-design-imported--message{flex-grow:1;padding:2rem 2rem 2rem 0}.kubio-design-imported--message h2{display:block;font-size:1.6rem;line-height:110%;margin:0;padding:0}.kubio-design-imported--message p{margin:.5rem 0 0;padding:0}@-webkit-keyframes kubio-preview-image-scroll{0%{transform:translateY(0)}50%{transform:translateY(calc(-100% + 240px))}}@keyframes kubio-preview-image-scroll{0%{transform:translateY(0)}50%{transform:translateY(calc(-100% + 240px))}}
  • kubio/1.0.33/resources/admin/admin.js

    r216227 r242135  
    2525      nonce: builderStatusData.kubio_disable_big_notice_nonce
    2626    });
    27     $notice_container.closest(".kubio-admin-big-notice").find("button.notice-dismiss").click();
    2827  }
    2928
     
    9089    var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
    9190        _ref$AI = _ref.AI,
    92         AI = _ref$AI === void 0 ? false : _ref$AI;
     91        AI = _ref$AI === void 0 ? false : _ref$AI,
     92        _ref$source = _ref.source,
     93        source = _ref$source === void 0 ? "notice" : _ref$source;
    9394
    9495    pluginNotice(builderStatusData.messages.preparing);
     
    9697      index: selectedFrontPage,
    9798      AI: AI ? "yes" : "no",
    98       nonce: builderStatusData.kubio_front_set_predesign_nonce
     99      nonce: builderStatusData.kubio_front_set_predesign_nonce,
     100      source: source
    99101    }).done(function () {
    100102      if (builderStatusData.status === "not-installed") {
     
    112114  $notice_container.on("click", ".start-with-predefined-design-button", function () {
    113115    selectedFrontPage = $(".selected[data-index]").data("index");
    114     processBuilderInstalationStepts();
     116    processBuilderInstalationStepts(function () {}, {
     117      AI: selectedFrontPage === 4
     118    });
    115119  });
    116120  $notice_container.on("click", ".start-with-ai-page", function () {
     
    120124    });
    121125  });
    122   $notice_container.closest('.kubio-admin-big-notice').on("click", ".kubio-notice-dont-show-container", disableNotice);
     126  $notice_container.on("click", ".view-all-demos", function () {
     127    selectedFrontPage = 0;
     128    processBuilderInstalationStepts(function () {}, {
     129      AI: false,
     130      source: "starter-sites"
     131    });
     132  });
     133  $notice_root = $notice_container.closest(".kubio-admin-big-notice");
     134  $custom_close_button = $notice_root.find(".kubio-notice-dont-show-container");
     135
     136  if ($custom_close_button.length) {
     137    $custom_close_button.on("click", function () {
     138      disableNotice();
     139      $notice_container.closest(".kubio-admin-big-notice").find("button.notice-dismiss").click();
     140    });
     141  } else {
     142    $notice_root.on("click", ".notice-dismiss", disableNotice);
     143  }
     144
    123145  var $document = $(document);
    124146
  • kubio/1.0.33/style.css

    r234973 r242135  
    22/*!
    33 Theme Name:   Kubio
    4  Version:      1.0.25
     4 Version:      1.0.33
    55 Description:  Kubio is an innovative,  easily customizable, multi-purpose theme, focused on empowering users to build astonishing WordPress websites. Kubio is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builder which enriches the WordPress block editor with a variety of new blocks and advanced styling options to give you full design freedom.
    66 Author:       Extend Themes
  • kubio/1.0.33/vendor/autoload.php

    r234973 r242135  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInitfa8da27cff6497b4b16429bd5a8f9175::getLoader();
     7return ComposerAutoloaderInitdbacae3f44370031219bcbd44a54b888::getLoader();
  • kubio/1.0.33/vendor/composer/autoload_real.php

    r234973 r242135  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitfa8da27cff6497b4b16429bd5a8f9175
     5class ComposerAutoloaderInitdbacae3f44370031219bcbd44a54b888
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInitfa8da27cff6497b4b16429bd5a8f9175', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInitdbacae3f44370031219bcbd44a54b888', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    27         spl_autoload_unregister(array('ComposerAutoloaderInitfa8da27cff6497b4b16429bd5a8f9175', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInitdbacae3f44370031219bcbd44a54b888', 'loadClassLoader'));
    2828
    2929        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    3131            require_once __DIR__ . '/autoload_static.php';
    3232
    33             call_user_func(\Composer\Autoload\ComposerStaticInitfa8da27cff6497b4b16429bd5a8f9175::getInitializer($loader));
     33            call_user_func(\Composer\Autoload\ComposerStaticInitdbacae3f44370031219bcbd44a54b888::getInitializer($loader));
    3434        } else {
    3535            $map = require __DIR__ . '/autoload_namespaces.php';
     
    5252
    5353        if ($useStaticLoader) {
    54             $includeFiles = Composer\Autoload\ComposerStaticInitfa8da27cff6497b4b16429bd5a8f9175::$files;
     54            $includeFiles = Composer\Autoload\ComposerStaticInitdbacae3f44370031219bcbd44a54b888::$files;
    5555        } else {
    5656            $includeFiles = require __DIR__ . '/autoload_files.php';
    5757        }
    5858        foreach ($includeFiles as $fileIdentifier => $file) {
    59             composerRequirefa8da27cff6497b4b16429bd5a8f9175($fileIdentifier, $file);
     59            composerRequiredbacae3f44370031219bcbd44a54b888($fileIdentifier, $file);
    6060        }
    6161
     
    6464}
    6565
    66 function composerRequirefa8da27cff6497b4b16429bd5a8f9175($fileIdentifier, $file)
     66function composerRequiredbacae3f44370031219bcbd44a54b888($fileIdentifier, $file)
    6767{
    6868    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • kubio/1.0.33/vendor/composer/autoload_static.php

    r234973 r242135  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitfa8da27cff6497b4b16429bd5a8f9175
     7class ComposerStaticInitdbacae3f44370031219bcbd44a54b888
    88{
    99    public static $files = array (
     
    166166    {
    167167        return \Closure::bind(function () use ($loader) {
    168             $loader->prefixLengthsPsr4 = ComposerStaticInitfa8da27cff6497b4b16429bd5a8f9175::$prefixLengthsPsr4;
    169             $loader->prefixDirsPsr4 = ComposerStaticInitfa8da27cff6497b4b16429bd5a8f9175::$prefixDirsPsr4;
    170             $loader->classMap = ComposerStaticInitfa8da27cff6497b4b16429bd5a8f9175::$classMap;
     168            $loader->prefixLengthsPsr4 = ComposerStaticInitdbacae3f44370031219bcbd44a54b888::$prefixLengthsPsr4;
     169            $loader->prefixDirsPsr4 = ComposerStaticInitdbacae3f44370031219bcbd44a54b888::$prefixDirsPsr4;
     170            $loader->classMap = ComposerStaticInitdbacae3f44370031219bcbd44a54b888::$classMap;
    171171
    172172        }, null, ClassLoader::class);
Note: See TracChangeset for help on using the changeset viewer.