SELECT 
  cscart_bm_snapping.grid_id as grid_id, 
  cscart_bm_snapping.block_id as block_id, 
  IFNULL(
    dynamic_object_content.content, 
    default_content.content
  ) as content, 
  IFNULL(
    dynamic_object_content.object_id, 
    default_content.object_id
  ) AS object_id, 
  IFNULL(
    dynamic_object_content.object_type, 
    default_content.object_type
  ) AS object_type, 
  cscart_bm_block_statuses.object_ids as object_ids, 
  cscart_bm_snapping.*, 
  cscart_bm_blocks.*, 
  cscart_bm_blocks_descriptions.* 
FROM 
  cscart_bm_snapping 
  LEFT JOIN cscart_bm_blocks ON cscart_bm_blocks.block_id = cscart_bm_snapping.block_id 
  LEFT JOIN cscart_bm_block_statuses ON cscart_bm_snapping.snapping_id = cscart_bm_block_statuses.snapping_id 
  AND cscart_bm_block_statuses.object_type LIKE 'products' 
  LEFT JOIN cscart_bm_blocks_descriptions ON cscart_bm_blocks.block_id = cscart_bm_blocks_descriptions.block_id 
  LEFT JOIN cscart_bm_blocks_content AS default_content ON cscart_bm_blocks.block_id = default_content.block_id 
  AND cscart_bm_blocks_descriptions.lang_code = default_content.lang_code 
  AND default_content.snapping_id = 0 
  AND default_content.object_id = 0 
  AND default_content.object_type like '' 
  LEFT JOIN cscart_bm_blocks_content AS dynamic_object_content ON cscart_bm_blocks.block_id = dynamic_object_content.block_id 
  AND cscart_bm_blocks_descriptions.lang_code = dynamic_object_content.lang_code 
  AND dynamic_object_content.object_id = 23529 
  AND dynamic_object_content.object_type like 'products' 
WHERE 
  cscart_bm_snapping.grid_id IN (
    2183, 2188, 2192, 2189, 2648, 2190, 2187, 
    2191, 2193, 2194, 2195, 2196, 2210, 
    2211, 2212, 2214, 2213, 2215
  ) 
  AND cscart_bm_blocks_descriptions.lang_code = 'en' 
ORDER BY 
  cscart_bm_snapping.order, 
  cscart_bm_snapping.block_id

Query time 0.00279

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "100729.51"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "74000.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_bm_snapping",
            "access_type": "range",
            "possible_keys": [
              "grid_id"
            ],
            "key": "grid_id",
            "used_key_parts": [
              "grid_id"
            ],
            "key_length": "4",
            "rows_examined_per_scan": 40,
            "rows_produced_per_join": 40,
            "filtered": "100.00",
            "index_condition": "(`cscart_db`.`cscart_bm_snapping`.`grid_id` in (2183,2188,2192,2189,2648,2190,2187,2191,2193,2194,2195,2196,2210,2211,2212,2214,2213,2215))",
            "cost_info": {
              "read_cost": "18.51",
              "eval_cost": "4.00",
              "prefix_cost": "22.51",
              "data_read_per_join": "30K"
            },
            "used_columns": [
              "snapping_id",
              "block_id",
              "grid_id",
              "wrapper",
              "user_class",
              "order",
              "status"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_bm_blocks_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id",
              "lang_code"
            ],
            "key_length": "10",
            "ref": [
              "cscart_db.cscart_bm_snapping.block_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 40,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "10.00",
              "eval_cost": "4.00",
              "prefix_cost": "36.51",
              "data_read_per_join": "8K"
            },
            "used_columns": [
              "block_id",
              "lang_code",
              "name"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_bm_blocks",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id"
            ],
            "key_length": "4",
            "ref": [
              "cscart_db.cscart_bm_snapping.block_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 40,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "19.00",
              "eval_cost": "4.00",
              "prefix_cost": "59.51",
              "data_read_per_join": "8K"
            },
            "used_columns": [
              "block_id",
              "type",
              "properties",
              "company_id",
              "storefront_id"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_bm_block_statuses",
            "access_type": "ref",
            "possible_keys": [
              "snapping_id"
            ],
            "key": "snapping_id",
            "used_key_parts": [
              "snapping_id"
            ],
            "key_length": "4",
            "ref": [
              "cscart_db.cscart_bm_snapping.snapping_id"
            ],
            "rows_examined_per_scan": 5,
            "rows_produced_per_join": 200,
            "filtered": "100.00",
            "index_condition": "<if>(is_not_null_compl(cscart_bm_block_statuses), ((`cscart_db`.`cscart_bm_snapping`.`snapping_id` = `cscart_db`.`cscart_bm_block_statuses`.`snapping_id`) and (`cscart_db`.`cscart_bm_block_statuses`.`object_type` like 'products')), true)",
            "cost_info": {
              "read_cost": "50.00",
              "eval_cost": "20.00",
              "prefix_cost": "129.51",
              "data_read_per_join": "23K"
            },
            "used_columns": [
              "snapping_id",
              "object_ids",
              "object_type"
            ]
          }
        },
        {
          "table": {
            "table_name": "default_content",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id",
              "snapping_id",
              "lang_code",
              "object_id"
            ],
            "key_length": "18",
            "ref": [
              "cscart_db.cscart_bm_snapping.block_id",
              "const",
              "cscart_db.cscart_bm_blocks_descriptions.lang_code",
              "const"
            ],
            "rows_examined_per_scan": 10,
            "rows_produced_per_join": 2000,
            "filtered": "100.00",
            "index_condition": "<if>(is_not_null_compl(default_content), (`cscart_db`.`default_content`.`object_type` like ''), true)",
            "cost_info": {
              "read_cost": "500.00",
              "eval_cost": "200.00",
              "prefix_cost": "829.51",
              "data_read_per_join": "437K"
            },
            "used_columns": [
              "snapping_id",
              "object_id",
              "object_type",
              "block_id",
              "lang_code",
              "content"
            ]
          }
        },
        {
          "table": {
            "table_name": "dynamic_object_content",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id"
            ],
            "key_length": "4",
            "ref": [
              "cscart_db.cscart_bm_snapping.block_id"
            ],
            "rows_examined_per_scan": 37,
            "rows_produced_per_join": 74000,
            "filtered": "100.00",
            "index_condition": "<if>(is_not_null_compl(dynamic_object_content), ((`cscart_db`.`dynamic_object_content`.`object_id` = 23529) and (`cscart_db`.`dynamic_object_content`.`lang_code` = `cscart_db`.`cscart_bm_blocks_descriptions`.`lang_code`) and (`cscart_db`.`dynamic_object_content`.`object_type` like 'products')), true)",
            "cost_info": {
              "read_cost": "18500.00",
              "eval_cost": "7400.00",
              "prefix_cost": "26729.51",
              "data_read_per_join": "15M"
            },
            "used_columns": [
              "object_id",
              "object_type",
              "block_id",
              "lang_code",
              "content"
            ]
          }
        }
      ]
    }
  }
}

Result

grid_id block_id content object_id object_type object_ids snapping_id wrapper user_class order status type properties company_id storefront_id lang_code name
2648 2 0 3320 top-currencies hidden-app hidden-phone 0 A currencies a:4:{s:8:"template";s:21:"blocks/currencies.tpl";s:4:"text";s:0:"";s:6:"format";s:6:"symbol";s:14:"dropdown_limit";s:1:"4";} 0 1 en Currencies
2193 7 0 3316 hidden-tablet hidden-desktop 0 D template a:1:{s:8:"template";s:62:"addons/ca_search_widget/blocks/static_templates/search_bar.tpl";} 0 1 en Search
2211 10 0 3345 0 D breadcrumbs a:1:{s:8:"template";s:22:"common/breadcrumbs.tpl";} 0 1 en Breadcrumbs
2210 209 a:1:{s:7:"content";s:657:"<div class="bk_footer_tab_list"> <ul> <li class="active"><a href="#"> <span class="bk-icon-footerhome"><span class="path1"></span><span class="path2"></span></span> For You </a></li> <li><a href="http://fqa2.kindlife.in/groups"> <span class="bk-icon-footerComunity"><span class="path1"></span><span class="path2"></span></span> Community </a></li> <li><a href="index.php?dispatch=shop.shopper"> <span class="bk-icon-footerShop"></span> Shop </a></li> <li><a href="#"><span class="bk-icon-footerOffer"></span> Offers </a></li> <li><a href="index.php?dispatch=pprofile.profilee"><span class="bk-icon-footerProfile"></span> Profiles </a></li> </ul> </div>";} 0 3344 hidden-desktop 0 D html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en bk_Footer_tabs
2190 333 a:1:{s:7:"content";s:10192:"<style type="text/css"> .bk_header_right{ position: relative; } .bk-icon-proicohdr img{ width: 24px; border-radius: 100px; } .bk_profileIconHeader .bk_proicohdr_activeImg{ display: none; } .bk_profileIconHeader .bk_proicohdr_nonActiveImg{ display: block; } .bk_profileIconHeader .active .bk_proicohdr_activeImg{ display: block; } .bk_profileIconHeader .active .bk_proicohdr_nonActiveImg{ display: none; } .bk_profileIconHeader a { width: 50px; display: block; text-align: center; line-height: 60px; } .bk_profileIconHeader svg { width: 26px; height: 26px; vertical-align: middle; } </style> <div class="bk_myaccount_navigation_container"> <div class="bk_profileIconHeader bk_my_account_nav_click"> <div {if ($runtime.controller== 'auth' && $runtime.mode == 'login_form') || ($runtime.controller== 'pprofile' && $runtime.mode == 'profiles')} class="active" {/if} > <a href="javascript:void(0)"> <span class="bk-icon-proicohdr bk_proicohdr_activeImg"> <svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23"> <g id="Group_1511" data-name="Group 1511" transform="translate(-902 -66)"> <g id="Ellipse_414" data-name="Ellipse 414" transform="translate(902 66)" fill="#fff" stroke="#2dbaa8" stroke-width="1"> <circle cx="11.5" cy="11.5" r="11.5" stroke="none"/> <circle cx="11.5" cy="11.5" r="11" fill="none"/> </g> <path id="Path_2513" data-name="Path 2513" d="M194.768,50.856a.5.5,0,0,1-.5-.5V46.135a6.025,6.025,0,0,0-1.682-4.553,5.58,5.58,0,0,0-3.786-1.3h-.164a5.6,5.6,0,0,0-3.822,1.3,6.027,6.027,0,0,0-1.682,4.559V50.36a.5.5,0,1,1-.993,0V46.135a6.966,6.966,0,0,1,2.013-5.293,6.506,6.506,0,0,1,4.522-1.554l.089,0a6.492,6.492,0,0,1,4.485,1.556,6.963,6.963,0,0,1,2.013,5.286V50.36A.5.5,0,0,1,194.768,50.856Zm-6.1-5.482.716-1.217.593,1.187a.5.5,0,0,0,.444.274h2.3a.5.5,0,1,0,0-.993h-1.991l-.865-1.73a.5.5,0,0,0-.427-.274.5.5,0,0,0-.445.245l-1.035,1.76h-3.3a.5.5,0,1,0,0,.993h3.587A.5.5,0,0,0,188.666,45.374ZM181.9,54.953c3.384-.861,5-1.678,4.944-2.5,0-.2,0-1.567,0-2.111a.5.5,0,0,0-.5-.495h0a.5.5,0,0,0-.495.5c0,.5,0,1.7,0,2.039-.139.151-.875.758-4.2,1.6a.5.5,0,1,0,.245.962Zm3.957-2.392v0Zm0,0h0Zm0,0h0Zm10.255,2.036a.5.5,0,0,0-.359-.6c-3.322-.845-4.057-1.452-4.2-1.6,0-.343,0-1.539,0-2.039a.5.5,0,0,0-.495-.5h0a.5.5,0,0,0-.5.495c0,.544,0,1.908,0,2.111-.06.818,1.56,1.635,4.944,2.5a.5.5,0,0,0,.123.015A.5.5,0,0,0,196.111,54.594Zm-4.562-2.029v0Zm0,0h0Zm0,0h0Zm-3.572-.969a.5.5,0,0,0-.26-.652,2.137,2.137,0,0,1-.226-.121,5.861,5.861,0,0,1-1.705-4.4,4.937,4.937,0,0,1,.1-1.156.5.5,0,1,0-.972-.205,5.834,5.834,0,0,0-.125,1.39h0a6.766,6.766,0,0,0,2.124,5.185,2.894,2.894,0,0,0,.407.222.5.5,0,0,0,.652-.26Zm2.1.26a2.758,2.758,0,0,0,.429-.239,6.743,6.743,0,0,0,2.1-5.139,5.842,5.842,0,0,0-.123-1.419.5.5,0,1,0-.971.2,5,5,0,0,1,.1,1.185,5.848,5.848,0,0,1-1.681,4.359,1.871,1.871,0,0,1-.249.137.5.5,0,1,0,.392.912Z" transform="translate(724.552 31.321)" fill="#2dbaa8"/> </g> </svg> </span> <span class="bk-icon-proicohdr bk_proicohdr_nonActiveImg"> <svg xmlns="http://www.w3.org/2000/svg" width="22.779" height="22.779" viewBox="0 0 22.779 22.779"> <g id="klaccount1" transform="translate(-429.006 -478.5)"> <g id="Ellipse_414" data-name="Ellipse 414" transform="translate(429.006 478.5)" fill="none" stroke="#5a5a5a" stroke-width="1"> <circle cx="11.389" cy="11.389" r="11.389" stroke="none"/> <circle cx="11.389" cy="11.389" r="10.889" fill="none"/> </g> <path id="Path_2513" data-name="Path 2513" d="M194.73,50.823a.5.5,0,0,1-.495-.495V46.116a6.008,6.008,0,0,0-1.678-4.54,5.564,5.564,0,0,0-3.775-1.3h-.164a5.581,5.581,0,0,0-3.811,1.3,6.01,6.01,0,0,0-1.677,4.546v4.206a.495.495,0,1,1-.99,0V46.116a6.946,6.946,0,0,1,2.007-5.278,6.487,6.487,0,0,1,4.509-1.55l.088,0a6.473,6.473,0,0,1,4.472,1.552,6.943,6.943,0,0,1,2.007,5.271v4.219A.5.5,0,0,1,194.73,50.823Zm-6.085-5.467.714-1.214.591,1.184a.5.5,0,0,0,.443.274h2.292a.495.495,0,1,0,0-.99H190.7l-.862-1.725a.5.5,0,0,0-.426-.273.5.5,0,0,0-.443.244l-1.033,1.755h-3.294a.495.495,0,0,0,0,.99h3.577A.5.5,0,0,0,188.645,45.356ZM181.9,54.908c3.374-.859,4.989-1.673,4.93-2.489,0-.2,0-1.563,0-2.105a.5.5,0,0,0-.495-.493h0a.5.5,0,0,0-.493.5c0,.5,0,1.691,0,2.033-.139.151-.873.756-4.184,1.6a.495.495,0,1,0,.244.959Zm3.946-2.385v0Zm0,0h0Zm0,0h0Zm10.226,2.03a.5.5,0,0,0-.358-.6c-3.312-.843-4.045-1.447-4.184-1.6,0-.342,0-1.534,0-2.033a.5.5,0,0,0-.493-.5h0a.5.5,0,0,0-.495.493c0,.542,0,1.9,0,2.105-.059.816,1.555,1.63,4.93,2.489a.5.5,0,0,0,.122.015A.5.5,0,0,0,196.069,54.551Zm-4.549-2.024v0Zm0,0h0Zm0,0h0Zm-3.562-.966a.5.5,0,0,0-.259-.65,2.128,2.128,0,0,1-.225-.12,5.845,5.845,0,0,1-1.7-4.391,4.925,4.925,0,0,1,.1-1.153.5.5,0,1,0-.969-.2,5.817,5.817,0,0,0-.124,1.386h0a6.747,6.747,0,0,0,2.118,5.171,2.883,2.883,0,0,0,.405.222.494.494,0,0,0,.65-.259Zm2.1.259a2.75,2.75,0,0,0,.428-.238,6.724,6.724,0,0,0,2.094-5.125,5.826,5.826,0,0,0-.123-1.415.495.495,0,1,0-.968.2,4.989,4.989,0,0,1,.1,1.182,5.832,5.832,0,0,1-1.676,4.346,1.865,1.865,0,0,1-.248.137.495.495,0,1,0,.391.909Z" transform="translate(251.853 443.297)" fill="#333"/> </g> </svg> </span> </a> </div> </div> <div class="bk_my_account_navigation"></div> </div> {literal} <script> $(document).ready(function(){ $(".bk_my_account_navigation").append($(".bk_my_account_navigation_block")); $('.bk_my_account_nav_click').on('click',function(){ $(".bk_my_account_navigation").slideToggle(); $('.bk_my_account_navigation_block .bk_PopUpProfile').css('display','block'); $(".bk_my_account_navigation_block .bk_category_menu").append($(".bk_newSideNav")); $('.bk_my_account_navigation_block .bk_newSideNav .ty-menu-vertical .ty-menu__items').css('display','block'); // $('.bk_overlay-search_cat').css('display','block'); return false; }); $('.bk_proflie_popClosePP').click(function(){ $(".bk_my_account_navigation").slideUp(); }); $(".bk_my_account_navigation_block .bk_newSideNav .ty-menu.ty-menu-vertical > ul > li").click(function(){ $(this).toggleClass("active"); $(this).siblings("li").removeClass("active"); }); $(".bk_my_account_navigation_block .bk_second_nav > li").click(function(){ $(this).find(".bk_nav_drdn").slideToggle(); $(this).siblings("li").find(".bk_nav_drdn").slideUp(); $(this).toggleClass("active"); $(this).siblings("li").removeClass("active"); }); $(".bk_my_account_navigation_block .bk_category_menu .bk_category_collapse").click(function(){ $(this).next('.bk_newSideNav').slideToggle(); $(this).toggleClass("active"); }); /* if(!window.ReactNativeWebView){ Tygh.$.ceAjax('request', fn_url('kl_account.user_profile_data'), { data:{ 'is_ajax':1, 'type': 'desktop_menu' }, method: 'GET', callback: function(data){ if(data.user_profile_pic){ if($('.bk-icon-proicohdr')[0]){ $('.bk-icon-proicohdr').children('img').attr('src',data.moo_pic_url+"/"+data.mo_user_id+"/200_square_"+data.user_profile_pic); } else{ $('.bk-icon-proicohdr').children('img').attr('src',data.moo_pic_url+"/"+data.mo_user_id+"/200_square_"+data.user_profile_pic); } } if(data.mo_user_id){ $('#skc').attr("href",fn_url("reward_points.userlog")); }else{ $('#skc').attr("href","superkind-club"); } if(data.user_type == 'P' && data.user_id){ var url = window.location; if(url.href.indexOf("aff_id=")>-1){ url = removeParam("aff_id",url.href); } if(typeof url != "string"){ url=url.href; } if(url.includes("?")){ window.history.pushState({},'',url+'&aff_id='+data.user_id); } else{ window.history.pushState({},'',url+'?aff_id='+data.user_id); } function removeParam(key, sourceURL) { var rtn = sourceURL.split("?")[0], param, params_arr = [], queryString = (sourceURL.indexOf("?") !== -1) ? sourceURL.split("?")[1] : ""; if (queryString !== "") { params_arr = queryString.split("&"); for (var i = params_arr.length - 1; i >= 0; i -= 1) { param = params_arr[i].split("=")[0]; if (param === key) { params_arr.splice(i, 1); } } rtn = rtn + "?" + params_arr.join("&"); } if(rtn.slice(-1)=='?'){ rtn = rtn.substring(0, rtn.length - 1); } return rtn; } } }, hidden: true }); } */ }); </script> {/literal}";} 0 3313 hidden-phone 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en sign in desktop
2215 340 a:1:{s:5:"items";a:5:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:1:"1";s:5:"limit";s:1:"1";s:3:"cid";s:0:"";}} 0 3350 blocks/wrappers/sidebox_important.tpl 0 A products a:4:{s:8:"template";s:41:"blocks/products/products_multicolumns.tpl";s:11:"item_number";s:1:"N";s:17:"number_of_columns";s:1:"1";s:23:"hide_add_to_cart_button";s:1:"Y";} 0 1 en New Launched
2183 361 a:1:{s:7:"content";s:7016:"<link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> <style> li.ty-cart-items__list-item { display: none; } /* poppins font for whole site */ /* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */ body * { font-family: "Poppins", sans-serif; } .ty-wysiwyg-content h4 { font-weight: 500; font-size: 16px; } .ty-scroller-list__description form > a { font-size: 14px; line-height: 18px; } .ty-scroller-list__description a.product-title { font-size: 13px; line-height: 18px; font-weight: 400; margin: 0; } .ty-thumbnail-list__name a, .bk-product-list__item-name a { color: #000; font-weight: 400; } /* css for profile-updaate start */ .bk_profile_updt_form .ty-profile-field__buttons.buttons-container { padding-top: 10px; } /* css for profile-updaate end */ /* css for review popup start */ .bk_pop-up_content .ty-product-review-new-product-review-rating .ty-control-group > div:last-child { position: absolute; width: 100px; height: 100px; right: 20px; top: 0; font-size: 11px; } .bk_pop-up_content .ty-product-review-new-product-review-rating .ty-control-group > div:last-child span { overflow: hidden; display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 16px; } .help-inline p { font-size: 80%; } @media (max-width:480px) { .bk_pop-up_content .ty-product-review-new-product-review-rating .ty-control-group > div:last-child { width: 90px; height: 90px; } } /* css for review popup end */ /* css for address page flag dropdown start */ div .bk_address_savedAddress .iti__country-list { bottom: 100%; } div .bk_address_savedAddress .bk_formGrp { overflow: unset; } div .bk_address_savedAddress .bk_col_row { overflow: auto; } /* css for address page flag dropdown end */ /* css for desk-nav-menu start */ .ty-menu-item__cokodive .ty-menu__item-link { background: url('https://cdn.kindlife.in/images/ui_icon/cokodive-logo.png') center no-repeat !important;; background-size: contain !important; color: transparent !important; user-select: none; } @media (max-width: 767px) { .ty-menu-item__cokodive .ty-menu__item-link { background-position: 16px 6px !important; background-size: 80px !important; } } /* css for desk-nav-menu end */ /* css for kiki-ai page start */ .kiki-qna-header .kiki-qna-title:before { content: ''; width: 24px; height: 24px; background: url(https://cdn.kindlife.in/images/ui_icon/kiki-app-sm-icon.svg) center no-repeat; background-size: contain; } div .kiki-qna-header .kiki-qna-title { -webkit-text-fill-color: unset; display: flex; align-items: center; gap: 6px; } /* css for kiki-ai page end */ /*css for popup-review start */ @media(max-width: 480px) { .bk_review_popup_new.k-ty-product-review .ty-product-review-new--review__body { height: calc(75vh - 100px); } } /*css for popup-review end */ a:hover { color: #000; } div .ty-owl-controls .owl-prev { position: absolute; left: 0; } div .ty-owl-controls .owl-next { position: absolute; right: 0; } /*css for pdp page start */ span.bk_feature_pdpShipment.bk_pdpShipment-block { display: none; } /*css for pdp page end */ /*css for plp page banner */ .bk_catBanner.mobile { display: none; } .bk_catBanner.mobile img { width: 100% } /*css for plp page banner */ body * { scrollbar-width: none; } .bk_upload_album, .bk_album_tab { display: none !important; } div.ty-product-review-reviews-stars { background: #57C062; line-height: 13px; } .ty-product-review-reviews-stars:before { display: none; } .container-fluid .buttons-container { background: transparent; } .ty-login-reglink { display: none; } .bk_desktop_nav .rfs-intrest-cate .ty-menu__submenu-items .ty-top-mine__submenu-col:last-child, .bk_desktop_nav .rfs-intrest-cate-in .ty-menu__submenu-items .ty-top-mine__submenu-col:last-child { background: #8cddc6; padding: 0px 10px; } .ty-menu-item__sale .ty-menu__item-link { color: #fe7400 !important; font-weight: 500; } .ty-menu-item__express .ty-menu__item-link { color: #22D1C1 !important; font-weight: 500; } .banners .ty-banner__image-item img { width: 100%; } .alert-error { border-color: #fff !important; background: #27262C !important; color: #F1AB51 !important; border-radius: 12px !important; } .alert-error .close { color: #fff !important; } div.notification-container { top: auto; bottom: 80px; right: auto; left: 50%; transform: translateX(-50%); min-width: unset; width: max-content; } @media (max-width: 766px) { .tygh-header { position: relative !important; top: 0; z-index: 99; } .bk_catBanner.desktop { display: none; } .bk_catBanner.mobile { display: block; } } @media (max-width: 480px) { div.notification-container { bottom: 130px; max-width: 80%; } } </style> <!-- main popup css start --> <style> .sd-popup__content .sd-popup__close { color: #000; font-size: 24px; top: 5px; right: 5px; background: #c9c9c9; width: 30px; line-height: 30px; text-align: center; border-radius: 50%; font-weight: 400; z-index: 1; } .sd-popup__content .sd-popup__close:hover, .sd-popup__content .sd-popup__close:focus { color: #000; text-decoration: none; cursor: pointer; } .hp_popup_wrap { position: relative; } .hp_links_img { position: absolute; bottom: 10%; right: 3%; display: flex; gap: 15px; width: 40%; } .hp_links_img img { border-radius: 6px; } /* main popup css end */ @font-face { font-family: glyphs; src: url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.eot'); src: url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.eot') format('embedded-opentype'), url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.woff') format('woff'), url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.ttf') format('truetype'), url('../../../../../../../../design/themes/new_2bk/media/fonts/glyphs.svg') format('svg'); } </style>";} 0 3764 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en CSS Custom Temporary
2188 627 a:1:{s:4:"menu";s:1:"2";} 0 4182 bk_newSideNav 0 D menu a:2:{s:8:"template";s:33:"blocks/menu/dropdown_vertical.tpl";s:25:"right_to_left_orientation";s:1:"N";} 0 1 en main menu mobile
2212 2469 a:1:{s:7:"content";s:2108:"{assign var="required_product_ids" value=[39633]} {if in_array($product.product_id, $required_product_ids)} <div class="deal_time_block" style="display: none;">Deal ends in <span class="deal-time">00:00:00</span></div> {/if} <style> .deal_time_block { background: #FAD6D8; color: #27262C; border-radius: 3px; font-size: 16px; font-weight: 500; display: inline-block; width: fit-content; padding: 0 7px; line-height: 22px; } span.deal-time { color: #EB515C; } div .deal_time_block + .bk_pdp_desc_wraper { margin-top: 10px; } @media (max-width: 767px) { .deal_time_block { margin-top: 20px; } } </style> <script> $(".deal_time_block").insertBefore($(".ty-product-block__left .bk_pdp_desc_wraper")) let dealDate = new Date("jan 10, 2025 12:00:00").getTime(); // function to calculate remaining time let countDown2 = setInterval(function () { let now = new Date().getTime(); let curSec = Math.floor(now / 1000); let distance = dealDate - now; let days = Math.floor(distance / (1000 * 60 * 60 * 24)); let hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); let mins = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); let secs = Math.floor((distance % (1000 * 60)) / 1000); var formatedTime = ((hours < 10) ? "0" : "") + hours + ":" + ((mins < 10) ? "0" : "") + mins + ":" + ((secs < 10) ? "0" : "") + secs; document.querySelector(".deal-time").textContent = formatedTime; }, 1000); function showDeal() { var today = new Date(); var start = new Date("nov 18, 2024 12:00:00"); var stop = new Date("nov 19, 2024 12:00:00"); if (today > start && today < stop) { $(".deal_time_block").show(); } else { $(".deal_time_block").hide(); } } setInterval(showDeal, 1000); </script>";} 0 9830 0 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en pdp page deal timer for specific pages
2183 2492 a:1:{s:7:"content";s:82:"<style> ul.kiki_people_qna_list > li:first-child { display: none; } </style>";} 0 9853 0 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en temps kiki ai css
2214 3065 a:4:{s:14:"ai_ques_prompt";s:1354:"kindlife.in is an online marketplace for new age beauty and wellness products. You are kiki, a lively, cheerful representative of 'kindlfe.in', and your task is to generate questions/question phrases about the product based on the details provided below and create relevant, concise, to the point questions that a customer might have about it. Guidelines: 1. You must generate at least 1 and at most 3 concise questions about the product(without repeating any question). 2. Ensure that each question must be between 4-9 words (lower limit preferably). STRICTLY stick to this word limit only. 3. Do not refer people to any external source, website, or company. 4. Do not generate questions about anything beyond the scope of given product details. 5. Don't respond with robotic texts, rather make the question informative, witty, easy to pick, to the point and relevant to the product. 6. Do not write product or brand name in generated questions, prefer using their pronouns instead. 7. Always respond in JSON format, STRICTLY adhere to this format, Always remember to put double quotes in the key-value pairs of this json and the curly braces: {\"ques1\":\"A brief and concise question\/question phrase\",\"ques2\":\"A brief and concise question\",\"ques3\":\"A brief and concise question\/question phrase\"}";s:13:"ai_ans_prompt";s:2344:"Act like Kiki, a lively, cheerful representative of 'kindlife.in', an online marketplace for new-age beauty and wellness products. Your task is to: Provide detailed answers about the product based on the details provided below. Create relevant responses to the questions that the user asks about it. Generate at least 1 and at most 3 related questions based on the user's initial query. Call the function check_products_recommendations when the user asks for recommendations or suggestions for products similar to the product details provided. Guidelines: 1. Do not refer to any external source, website, or company. 2. Do not generate responses about anything beyond the scope of the given product details. If the question is not relevant to the product, politely respond and bring the topic back to the product. 3. For general opening or closing remarks related to greetings or farewells (e.g., hi, hey, what's up, bye, thanks, okay, how are you), politely answer and bring the topic back to the product using one of the formats below. 4. Avoid robotic responses; make your responses informative, witty, and relevant to the product. 5. Mention the product or brand name only when necessary. 6. Always respond in JSON format. STRICTLY adhere to the following format, ensuring to use double quotes in key-value pairs and curly braces: Format: {"ans":"Answer to the user's question that has been asked","ques":{"ques1":"A brief and concise question relevant to the context","ques2":"A brief and concise question/question phrase relevant to the context"}} Ensure that only one JSON object is provided in the response. 7. If the generated question pertains to the user, ensure it is in the first person (e.g., "I would", "Do I have", "Does it suit my", "Can I", "I want to know more", etc.). Under no circumstances should the second person be used in the generated question (e.g., "Would you", "Do you have", "Are you", "Do you want to know more", etc. avoid using second person). 8. The "ans" (answer) must be between 20-50 words. The "ques" (questions) must not exceed 10 words. You must generate at least 1 and at most 3 questions relevant to the context and the product without repeating any questions. Take a deep breath and work on this problem step-by-step.";s:14:"show_variables";s:2:"no";s:3:"cid";s:0:"";} 0 10901 0 A kiki_ai_qna_block a:1:{s:8:"template";s:54:"addons/kl_chat/views/kl_qna/content/ai_suggestions.tpl";} 0 1 en PDP AI Suggestions Block
2212 3203 a:1:{s:7:"content";s:1519:"<style> .wrap_deal { margin: 5px auto 10px; } .deal_time_wrap { width: 100%; font-size: 20px; text-align: center; font-weight: 400; background: url(https://cdn.kindlife.in/images/banners/home-page-images/HP-topCouponBg0603.webp) no-repeat center center; color: #000; padding: 5px; border-radius: 6px; } .deal_time_wrap span { font-weight: 600; font-size: 15px; } .code_wrap { background: #fff; display: inline-block; color: #000; line-height: 18px; padding: 5px 10px; font-size: 20px; border-radius: 5px; text-align: center; } @media (max-width: 1200px) { .deal_time_wrap { font-size: 2vw; } } @media (max-width: 600px) { .desktop { display: none; } .mobile { display: block; } } @media (max-width: 480px) { .deal_time_wrap { font-size: 13px; } .code_wrap { padding: 2px 5px; } .deal_time_wrap span { font-size: 11px; } } </style> <div class="wrap_deal"> <div class="deal_time_wrap"><span> KOLOUR ME KIND HOLI SALE IS LIVE | <span> GET <span>EXTRA 40%</span> OFF <div class="code_wrap"><span class="cosrx_deal">USE HOLI40</span></div> </div> </div>";} 0 11450 0 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Holi strip for all pids
2190 185 0 3307 bk-pull-right top-cart 1 A cart_content a:4:{s:8:"template";s:23:"blocks/cart_content.tpl";s:22:"display_bottom_buttons";s:1:"Y";s:20:"display_delete_icons";s:1:"Y";s:19:"products_links_type";s:5:"thumb";} 0 1 en Cart
2188 243 a:1:{s:7:"content";s:102:"<div class="hamburger_menu"> <a href="#"><i class="top-hamburgur ty-icon-menuxd"></i></a> </div>";} 0 3302 hamburgur_icon hidden-tablet hidden-desktop 1 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en hamburger
2648 261 a:1:{s:7:"content";s:14620:"<style> .bk_top_code_strip_wrap { background: #54D4C6; background-size: cover; /* background:linear-gradient(#f94f01 30%,#fff 30% 70%,#2b9602 70%); background: radial-gradient(circle, rgba(142, 25, 24, 1) 0%, rgba(75, 20, 19, 1) 84%); */ } .bk_top_code_strip_inner { max-width: 1200px; margin: 0 auto; position: relative; } .bk_top_code_strip { display: inline-flex; justify-content: center; padding: 6px; flex-wrap: wrap; gap: 10px; } .bk_top_code_text-box { display: inline-flex; align-items: center; text-align: center; gap: 10px; } /* .bk_top_code_actionBtns { background-color: #dbbbbbc9; padding: 3px; border-radius: 3px; } */ .bk_top_code_text-box p, .bk_top_code_coupon-box .coupon-code { /* background: linear-gradient(90deg, #e1625e 0%, #f3cf1f 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; */ font-weight: 600; text-transform: uppercase; color: #fff; } .text-unset p { text-transform: unset; } .bk_top_code_coupon-box { padding: 5px 10px; background: #fff; border: 1px dashed #fff; border-radius: 5px; cursor: pointer; position: relative; } span.coupon-code { color: #000 !important; } .bk_top_code_actionBtns a { color: #000; display: flex; align-items: center; gap: 2px; } .coupon_code_slides { display: none } .slideshow-container { position: relative; } .prev-slide, .next-slide { all: unset; cursor: pointer; position: absolute; top: 50%; width: auto; font-size: 16px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; /* color: #0009; */ color: #fff; padding: 10px; z-index: 1; margin-top: -22px; display: none; } .next-slide { right: 0; border-radius: 3px 0 0 3px; } .prev-slide:hover, .next-slide:hover { background-color: rgba(0, 0, 0, 0.1); } .bk_top_code_coupon-box p { display: none; position: absolute; bottom: -38px; background: #000; color: #2B8B35; padding: 10px; line-height: 14px; border-radius: 4px; left: 50%; transform: translateX(-50%); box-shadow: 0px 0px 4px #0005; font-size: 12px; font-weight: 500; white-space: nowrap; z-index: 10; text-transform: capitalize; } .bk_top_code_coupon-box p span { color: #fff; } .bk_top_code_coupon-box.show p { display: block; } /* Fading animation */ .bk_top_code_strip_wrap .fade { animation-name: fade; animation-duration: 1.5s; } @keyframes fade { from { opacity: .4 } to { opacity: 1 } } @media (max-width: 767px) { .bk_top_code_text-box p, .bk_top_code_coupon-box, .bk_top_code_actionBtns a { font-size: 13px; } } @media (max-width: 480px) { .bk_top_code_text-box p, .bk_top_code_coupon-box, .bk_top_code_actionBtns a { font-size: 10px; } .prev-slide, .next-slide, .bk_top_code_actionBtns a span { display: none !important; } .bk_top_code_coupon-box { padding: 5px; } } @media (max-width: 380px) { .bk_top_code_coupon-box, .bk_top_code_actionBtns { display: none; } } </style> <div class="bk_top_code_strip_wrap"> <div class="bk_top_code_strip_inner"> <button class="bk_code_arrowBtn prev-slide" onclick="nextSlide(-1)" style="display: block;">❮</button> <button class="bk_code_arrowBtn next-slide" onclick="nextSlide(1)" style="display: block;">❯</button> <!-- <div class="bk_top_code_strip coupon_code_slides fade" style="display: flex;"> <div class="bk_top_code_text-box"> <p>Extra 30% on COSRX orders </p> <div class="bk_top_code_coupon-box"><span class="coupon-code">Use: <span>SPECIAL30</span></span> <p class="coupon-copy-text"><span></span> Copied</p> </div> </div> </div> --> <div class="bk_top_code_strip coupon_code_slides fade" style="display: none;"> <div class="bk_top_code_text-box"> <p> ₹200 off on ₹1,499 sale on supplements</p> <div class="bk_top_code_coupon-box"><span class="coupon-code"> <span> FIT200</span></span> <p class="coupon-copy-text"><span></span> Copied</p> </div> </div> </div> <!-- <div class="bk_top_code_strip coupon_code_slides fade" style="display:none;"> <div class="bk_top_code_text-box"> <p> 10% off for new users</p> <div class="bk_top_code_coupon-box"><span class="coupon-code"> <span> NEW10</span></span> <p class="coupon-copy-text"><span></span> Copied</p> </div> </div> </div> --> <div class="bk_top_code_strip coupon_code_slides fade" style="display: none;"> <div class="bk_top_code_text-box"> <p> Up to 50% off on handpicked faves </p> <div class="bk_top_code_coupon-box"><span class="coupon-code"> <span> HALFPRICE</span></span> <p class="coupon-copy-text"><span></span> Copied</p> </div> </div> </div> <div class="bk_top_code_strip coupon_code_slides fade" style="display: flex;"> <div class="bk_top_code_text-box"> <p> 5% off on all K-beauty </p> <div class="bk_top_code_coupon-box"><span class="coupon-code"> <span> KLOVE</span></span> <p class="coupon-copy-text"><span></span> Copied</p> </div> </div> </div> <div class="bk_top_code_strip coupon_code_slides fade" style="display: none;"> <div class="bk_top_code_text-box"> <p> 10% off on derma brands</p> <div class="bk_top_code_coupon-box"><span class="coupon-code"> <span> RX10</span></span> <p class="coupon-copy-text"><span></span> Copied</p> </div> </div> </div> <div class="bk_top_code_strip coupon_code_slides fade" style="display: none;"> <div class="bk_top_code_text-box"> <p> 10% off on ₹1,999+</p> <div class="bk_top_code_coupon-box"><span class="coupon-code"> <span> SUMVIBE10</span></span> <p class="coupon-copy-text"><span></span> Copied</p> </div> </div> </div> <!-- <div class="bk_top_code_strip coupon_code_slides fade"> <div class="bk_top_code_text-box"> <p> EXTRA 15% off on orders ₹1,499+ </p> <div class="bk_top_code_coupon-box"><span class="coupon-code">Use Code: <span>APP15</span></span><p class="coupon-copy-text"><span></span> Copied</p></div> <div class="bk_top_code_actionBtns"> <a href="https://play.google.com/store/apps/details?id=com.kindlife&hl=en_IN&gl=US"> <img src="https://cdn.kindlife.in/images/ui_icon/get-app-icon.svg" alt="app-icon" width="20" height="20"> <span>GET APP</span> </a> </div> </div> </div> --> </div> </div> <script> let slideIndex = 1; showSlides(slideIndex); // change slide after 2 seconds var slideTimer = setInterval(() => { showSlides(++slideIndex); }, 5000); // next-slide funtion function nextSlide(n) { showSlides(slideIndex += n); clearInterval(slideTimer); slideTimer = setInterval(() => { showSlides(++slideIndex); }, 5000); } function showSlides(n) { let i; let slides = document.getElementsByClassName("coupon_code_slides"); let slideBtns = document.getElementsByClassName("bk_code_arrowBtn"); if (n > slides.length) { slideIndex = 1 } if (n < 1) { slideIndex = slides.length } for (i = 0; i < slides.length; i++) { slides[i].style.display = "none"; } if (slides.length > 1) { for (b = 0; b < slideBtns.length; b++) { slideBtns[b].style.display = "block"; } } slides[slideIndex - 1].style.display = "flex"; } </script> <script> function getMobileOperatingSystem() { var userAgent = navigator.userAgent || navigator.vendor || window.opera; if (/windows phone/i.test(userAgent)) { return "Windows Phone"; } if (/android/i.test(userAgent)) { return "Android"; } if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) { return "iOS"; } return "unknown"; } function DetectAndServe() { let os = getMobileOperatingSystem(); // alert(os) if (os == "Android") { window.location.href = "https://play.google.com/store/apps/details?id=com.kindlife&hl=en_IN&gl=US"; } else if (os == "iOS") { window.location.href = "https://apps.apple.com/us/app/kindlife/id1558677327"; } else if (os == "Windows Phone") { window.location.href = "https://kindlife.in"; } else { window.location.href = "https://kindlife.in"; } } $(".bk_top_code_actionBtns a").click(() => { DetectAndServe(); }) </script> <script> (function (_, $) { $(document).ready(function () { if (window.ReactNativeWebView) { $(".bk_top_code_actionBtns").hide(); setTimeout(() => { $(".hp_popup_wrap .hp_links_img").hide(); $(".hp_main_img.web").hide(); $(".hp_main_img.app").show(); }, 1000); } }); })(Tygh, Tygh.$); </script> <script> $(document).ready(function () { // copy-to-clipboad function $(".bk_top_code_coupon-box > span").click(function () { let copyText = $(this).find("span")[0]; let copyBox = $(this).parent(".bk_top_code_coupon-box").addClass("show"); let copyCode = $($(this).siblings("p")[0]).find("span")[0]; copyCode.innerText = '"' + copyText.innerText + '"' + " Coupon"; setTimeout(() => { $(copyBox).removeClass("show"); }, 3000); navigator.clipboard.writeText(copyText.innerHTML); }); }); </script>";} 0 3301 1 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Top Coupon code strip
2193 336 a:1:{s:7:"content";s:3462:"<style> .blockfullwidth { margin: 0px -10px; } .ty-wysiwyg-content .bk-mainbox-title { line-height: normal; height: auto; font-size: inherit; font-weight: 500; } .bk_prodListdiv{ background-color: #EDF2F8; padding: 0px 10px; } .bk_pagename_top >div>img { height: auto; width: 30px; border-radius: 100px; padding: 6px; background-color: white; margin-right: 10px; } .bk_prodListTags{ width: 100%; box-sizing: border-box; overflow-x: auto; white-space: nowrap; padding-bottom: 10px; } .bk_prodListTags > ul.subcategories > li { border:none; padding:0 0; } .bk_prodListTags > span{ font-weight: normal; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: left; color: #1b1c1e; display: inline-block; margin-right: 5px; margin-top: 8px; height: 30px; line-height: 30px; } .bk_prodListTags ul{ margin: 0; padding: 0; list-style: none; display: inline-block; } .bk_prodListTags ul li{ width: auto; display: inline-block; margin: 0px; } .bk_prodListTags ul li a{ display: block; width: auto; padding: 8px 10px 7px; border: solid 1px #ffffff; background: #fff; border-radius: 5px; font-size: 14px; font-weight: normal; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: center; color: #525252; box-shadow: 0 2px 6px #00000017; -webkit-box-shadow: 0 2px 6px #00000017; } .bk_prodListTags ul li.active a{ color: #2DBAA8; border: solid 1px #2DBAA8; } .bk_product_count_number{ line-height: inherit; color: #525252; background: none; padding-left: 0; padding-top: 0px; padding-bottom: 5px; font-size: 13px } .bk_product_search_count { display: none; } .bk_pagename_top{ padding: 10px 0px; } </style> <div class="bk_prodListdiv" > <div class="bk_pagename_top"> <div style="float: left;">{if !empty($category_data.main_pair.detailed.image_path) } <img src="{$category_data.main_pair.detailed.image_path}"/> {/if} </div> <div style=" display: inline-block; margin: 0px 10px 0px 0px;"> <h4 class="ty-mainbox-title header bk-mainbox-title header"> {if $category_data.category|trim} {$category_data.category nofilter} {else} <span>{$category_data.page_title}</span> {/if} <br> <div id="bk_product_count_text" class="bk_product_count_number"></div> </h4> </div> </div> {if $subcategories} <div class="bk_prodListTags"> {math equation="ceil(n/c)" assign="rows" n=$subcategories|count c=$columns|default:"2"} {split data=$subcategories size=$rows assign="splitted_subcategories"} <ul class="subcategories clearfix"> {hook name="categories:view_subcategories"} {foreach from=$splitted_subcategories item="ssubcateg"} {foreach from=$ssubcateg item=category name="ssubcateg"} {if $category} <li class="ty-subcategories__item"> <a href="{"categories.view?category_id=`$category.category_id`"|fn_url}"> {if $category.main_pair} {/if} <span {live_edit name="category:category:{$category.category_id}"}>{$category.category}</span> </a> </li> {/if} {/foreach} {/foreach} {/hook} </ul> {/if} </div> </div>";} 0 3317 1 D smarty_block a:1:{s:8:"template";s:23:"blocks/smarty_block.tpl";} 0 1 en Sub Categories on Product Listing Pages
2183 621 a:1:{s:7:"content";s:228:"<script> const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); if(urlParams.has('app_header')){ $('.tygh-header').css("display", "none"); } </script>";} 0 4173 1 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en hide header for app
2214 1074 a:1:{s:6:"blocks";s:112:"<p><b title="Compare" class="wysiwyg-block-loader cm-block-loader cm-block-loader--RGtp048x1RE="></b></p><p></p>";} 0 33772 6089 blocks/wrappers/mainbox_simple.tpl 1 A kl_load_block_by_ajax a:1:{s:8:"template";s:60:"addons/my_changes/blocks/kl_features/product/ajax_blocks.tpl";} 0 1 en Compare with similar items
2212 2319 a:1:{s:7:"content";s:3569:"{assign var="variant" value=$product.product_id|fn_get_product_brand_name} {assign var="variant_id" value=$variant|fn_get_product_variant_id} <style> .bk_pid_code_inner { display: flex; overflow-x: auto; justify-content: space-between; scroll-behavior: smooth; column-gap: 10px; margin-top: 10px; } .bk_pid_code_inner::-webkit-scrollbar { display: none; } .bk_pid_strip { flex: 1; display: flex; justify-content: center; padding: 6px 10px; flex-wrap: wrap; gap: 10px; background: #54D4C6; border-radius: 6px; } .bk_pid_strip { flex: 0 0 49.5%; } .bk_pid_text { display: flex; align-items: center; text-align: center; } .bk_pid_text p { font-size: 14px; line-height: 1.3; color: #fff; font-weight: 400; } .bk_pid_text span { font-weight: 700; color: #fff; } /* Fading animation */ .bk_pid_strip_wrap .fade1 { animation-name: fade1; animation-duration: 1.5s; } @keyframes fade1 { from { opacity: .4 } to { opacity: 1 } } @media (max-width: 767px) { .bk_pid_strip { flex: 0 0 100%; } .bk_pid_text p { font-size: 14px; } } @media (max-width: 480px) { .bk_pid_text p { font-size: 12px; } } </style> <div class="bk_pid_strip_wrap"> <button class="bk_pid_strip_previousBtn" style="display: none;"><span class="ty-icon ty-icon-left-open-thin"></span></button> <button class="bk_pid_strip_nextBtn" style="display: none;"><span class="ty-icon ty-icon-right-open-thin"></span></button> <div class="bk_pid_code_inner"> {if in_array($product.product_id,array('66856'))} <div class="bk_pid_strip fade1"> <div class="bk_pid_text"> <p><span>FREE mini eye cream (12g) </span></p> </div> </div> {/if} {if in_array($product.product_id,array('31317'))} <div class="bk_pid_strip fade1"> <div class="bk_pid_text"> <p><span>Get FREE mini black sugar wash off mask (15ml) </span></p> </div> </div> {/if} <div class="bk_pid_strip fade1"> <div class="bk_pid_text"> <p><span>RIZZ10 | 10% off </span> on orders ₹999+ </p> </div> </div> <div class="bk_pid_strip fade1"> <div class="bk_pid_text"> <p><span>RIZZ50 | 50% off </span> on selected protein orders ₹4,500+ </p> </div> </div> <!-- <div class="bk_pid_strip fade1"> <div class="bk_pid_text"> <p><span>COKO5 | 5% off </span> on all kpop merch </p> </div> </div> --> </div> </div> <script> const productContainerNew = document.querySelectorAll('.bk_pid_code_inner'); const nextBtn = document.querySelectorAll('.bk_pid_strip_nextBtn'); const previousBtn = document.querySelectorAll('.bk_pid_strip_previousBtn'); productContainerNew.forEach((item, i) => { const bannerCards = item.querySelectorAll('.bk_pid_strip'); const containerWidthNew = item.offsetWidth; const cardWidthNew = bannerCards[0].offsetWidth; let index = 0; nextBtn[i].addEventListener('click', () => { index++; const maxIndex = bannerCards.length - Math.floor(containerWidthNew / cardWidthNew); if (index > maxIndex) { index = 0; item.scrollLeft = 0; } else { item.scrollLeft = index * (cardWidthNew + 10); } }); previousBtn[i].addEventListener('click', () => { index--; if (index < 0) { index = 0; item.scrollLeft = 0; } else { item.scrollLeft = index * (cardWidthNew + 10); } }); setInterval(() => { nextBtn[i].click(); }, 4000); }); </script>";} 0 9574 1 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en coupon code strip for all pids
2189 7 0 3306 hidden-phone 2 A template a:1:{s:8:"template";s:62:"addons/ca_search_widget/blocks/static_templates/search_bar.tpl";} 0 1 en Search
2194 64 0 3319 top-languages 2 D languages a:4:{s:8:"template";s:20:"blocks/languages.tpl";s:4:"text";s:0:"";s:6:"format";s:4:"name";s:14:"dropdown_limit";s:1:"0";} 0 1 en Languages
2193 240 0 3318 hidden-app 2 A template a:1:{s:8:"template";s:70:"addons/ca_search_widget/blocks/static_templates/kl_search_category.tpl";} 0 1 en Search_Category
2188 246 0 3303 2 A template a:1:{s:8:"template";s:50:"addons/my_changes/blocks/static_templates/side.tpl";} 0 1 en open_hamburger
2192 335 a:1:{s:4:"menu";s:1:"2";} 0 3315 hidden-phone 2 A menu a:3:{s:8:"template";s:35:"blocks/menu/dropdown_horizontal.tpl";s:30:"dropdown_second_level_elements";s:2:"12";s:29:"dropdown_third_level_elements";s:2:"10";} 0 1 en main menu desktop
2190 985 0 5940 bk_my_account_navigation_block hidden-phone 2 A template a:1:{s:8:"template";s:58:"addons/my_changes/blocks/static_templates/side-desktop.tpl";} 0 1 en Desktop My Account Navigation
2214 1075 0 12564 2 D kl_compare_pdp a:1:{s:8:"template";s:58:"addons/my_changes/views/products/components/kl_compare.tpl";} 0 1 en Compare
2183 1143 a:1:{s:7:"content";s:1961:"<style> body div.ui-dialog .ui-dialog-titlebar { padding: 10px 15px; } body div.ui-dialog .ui-dialog-titlebar .ui-dialog-title.bk_popup-title { font-size: 22px; } body div.ui-widget-content.ui-dialog .bk_pop-up_content .buttons-container { margin-top: 10px; } .bk_review_popup_new img { border: 1px solid #f2f2f2; padding: 5px; } .ty-product-review-new-product-review__media .ty-fileuploader__drop-zone--visible .ty-fileuploader__drop-zone-text { text-transform: none; font-weight: 400; } body .ui-dialog .ui-dialog-titlebar { border-bottom: 1px solid #d3d3d3; } .bk_review_popup_new .ty-control-group__title { font-size: 16px; font-weight: 500; color: #000; } @media(max-width: 480px) { .bk_review_popup_new.k-ty-product-review .ty-control-group .ty-product-review-rate+div { width: 90px; height: 90px; } /* .bk_review_popup_new.k-ty-product-review .ty-product-review-new--review__body { height: 445px; } */ .bk_review_popup_new textarea { min-height: 160px; } .ui-dialog.ui-corner-all.ui-widget.ui-widget-content.ui-front.dialog-auto-sized.bk_popup-containers { width: 100% !important; height: 100% !important; border-radius: 0px !important; max-height: 100vh !important; } .bk_popup-containers.ui-dialog .ui-dialog-titlebar { border-bottom: none; } /* .bk_review_popup_new .ty-btn.ty-btn__primary { width: 100%; border-radius: 0; height: 45px; } */ .bk_popup-containers .ui-dialog-content.ui-widget-content { padding: 0; } .bk_review_popup_new.ty-product-review-new-product-review.k-ty-product-review { margin-top: 10px; } .bk_pop-up_content.k-ty-product-review .ty-product-review-new--review__body section { padding: 0; } } </style>";} 0 6282 2 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en popup review css
2648 2652 a:1:{s:7:"content";s:3872:"<style type="text/css"> .bk_top_code_strip{ background-color: #e3f3f1; } .bk_top_code_strip_text{ padding: 5px 55px 5px 5px; text-align: center; } .bk_top_code_strip *{ color: #000; font-size: 16px; font-weight: 500; background-image: linear-gradient(90deg,#d42377,#1c90fd); background-color: #208df8; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; } .bk_top_code_strip_text a::after{ content: ""; position: absolute; bottom: 0px; left: 0; height: 2px; width: 100%; background-image: linear-gradient(90deg,#d42377,#1c90fd); } .bk_top_code_strip_text a.bk_app_downloadBtn1::after{ height: 1px; } .bk_top_code_strip .btn{ padding: 0; } .bk_app_downloadBtn1 { display: none; } @media (max-width: 767px){ .bk_app_downloadBtn1 { display: inline-block; } .bk_app_downloadBtn-desk1 { display: none; } } @media(max-width:450px) { .bk_top_code_strip *{ font-size: 14px; } .bk_top_code_strip_text { padding: 6px; } } </style> <div class="bk_top_code_strip show_web"> <div class="bk_top_code_strip_text"> <div>Use code APP15 for extra 15% off on app <a class="btn bk_app_downloadBtn-desk1" href="https://play.google.com/store/apps/details?id=com.kindlife&hl=en_IN&gl=US"> DOWNLOAD NOW</a> <a class="btn bk_app_downloadBtn1"> DOWNLOAD NOW</a> *T&C Apply </div> </div> </div> <div class="bk_top_code_strip show_mob" style="display: none;"> <div class="bk_top_code_strip_text"> <div>Use code APP15 for extra 15% off on your first order </div> </div> </div> <script> function getMobileOperatingSystem() { var userAgent = navigator.userAgent || navigator.vendor || window.opera; if (/windows phone/i.test(userAgent)) { return "Windows Phone"; } if (/android/i.test(userAgent)) { return "Android"; } if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) { return "iOS"; } return "unknown"; } function DetectAndServe(){ let os = getMobileOperatingSystem(); // alert(os) if (os == "Android") { window.location.href = "https://play.google.com/store/apps/details?id=com.kindlife&hl=en_IN&gl=US"; } else if (os == "iOS") { window.location.href = "https://apps.apple.com/us/app/kindlife/id1558677327"; } else if (os == "Windows Phone") { window.location.href = "https://kindlife.in"; } else { window.location.href = "https://kindlife.in"; } } $(".bk_app_downloadBtn1").click(() => { DetectAndServe(); }) </script> <script> (function (_, $) { $(document).ready(function() { if (window.ReactNativeWebView) { $(".bk_top_code_strip.show_web").hide(); $(".bk_top_code_strip.show_mob").show(); setTimeout(() => { $(".hp_popup_wrap .hp_links_img").hide(); $(".hp_main_img.web").hide(); // $(".hp_main_img.app").show(); }, 1000); } }); })(Tygh, Tygh.$); </script> ";} 0 10286 2 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en HP top kindcode strip
2212 3122 a:1:{s:7:"content";s:101:"<script src="https://www.kindlife.in/js/lib/owlcarousel/owl.carousel.min.js?ver=1727670920"></script>";} 0 11037 2 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en Owl Carousel JS
2195 3 a:1:{s:4:"menu";s:1:"1";} 0 3321 top-quick-links 3 A menu a:2:{s:8:"template";s:26:"blocks/menu/text_links.tpl";s:18:"show_items_in_line";s:1:"Y";} 0 1 en Quick links
2190 212 0 3308 top-wishlist bk-pull-right 3 A template a:1:{s:8:"template";s:58:"addons/my_changes/blocks/static_templates/wishlist_2bk.tpl";} 0 1 en wishlist_2bk
2188 230 a:1:{s:7:"content";s:269:"<div onclick="return goToPreviousPage()" ><img src="images/back_bt.svg" ></div> <script> function goToPreviousPage(){ if(document.referrer.indexOf(window.location.hostname) !== -1){ window.history.back(); }else{ window.location.href = "/"; } } </script>";} 0 3304 bk_backBtn hidden-tablet hidden-desktop 3 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en back-button
2212 337 a:1:{s:7:"content";s:5774:"<style> div .bk_productDetailWrapper section.ty-product-review-write-review>div { padding: 0px; } .bk_productDetailWrapper .bk_reviewSection-wrapper { flex: 0 0 65%; margin: 0px 20px 0px 0px; } div .span16.bk_rev_rat_simProduct { border-top: 1px solid #d6d6d6; padding: 0px 0 80px; } .ty-product-review-post-images__item img { aspect-ratio: 3 / 4; object-fit: cover; } div .bk_productDetailWrapper .bk_review_sidebar_cont .ty-product-review-write-review h4 { font-weight: 600; } div .bk_features_block .ty-product-feature .ty-product-feature__multiple-item { font-size: 14px; } div .bk_features_block .ty-product-feature__value { font-size: 14px; } div .bk_features_block .ty-product-feature__label { font-size: 14px; } .ty-icon-arrow-up{ content: "\e900"!important; } span.rat_count { display: none; } .ty-product-review-post-customer__date { width: 75px; white-space: nowrap; overflow: hidden; text-overflow: inherit; } @media (max-width: 480px) { div .bk_pdp_para ul li { font-size: 14px; } } @media (min-width: 480px) { .variant-content-wrap { font-size: 14px; } .bk_productDetailInnerWrapper .ty-product-review-post-customer { min-width: 200px!important; } .bk_productDetailInnerWrapper .ty-product-review-post-customer__address { display: flex; align-items: self-start !important; font-style: normal; flex-wrap: wrap; column-gap: 10px; flex-direction: column; } .bk_productDetailInnerWrapper .ty-product-review-post { display: flex; gap: 20px; } .ty-product-review-post-footer { display: flex; justify-content: start !important; align-items: flex-start !important; flex-direction: column; gap: 12px; } } div .bk_pdp_desc_wraper .brand a { color: #28a99b; line-height: normal; } div .ty-product-block-title { margin: 3px 0px; } .pro_detail_read_more { font-size: 14px; } div .bestPrice-discount { justify-content: start; } .open .bestPrice-discount::after { cursor: pointer; } .bestPrice-discount p { transition: all 0.5s; } .disc_section .pdp-detail-content p { padding: 6px 0; } div .pdp-detail-content p { padding: 6px 0; } .disc_section div ul { padding: revert; margin: revert; list-style: disc; } .disc_section div ul li { margin: 0px 0px 12px 0px; } div.bk_key_product_info_features_container .bk_key_prod_info_wrap { display: flex; flex-direction: row; column-gap: 8px; white-space: nowrap; flex-wrap: wrap; } div .bk_key_product_info_features_container .bk_key_prod_info_feature { padding: 4px 0; } .pdp-dis-heading{ display: none; } span.ty-tooltip-block { display: none; } .bk_features_block .ty-product-feature .ty-product-feature__multiple-item { word-break: break-word; } div .pdp_notify_content.success { border-color: #c0bdbd; background: #4e4b5845; color: #5f5a6b; } div .pdp_notify_content { background: #FCEDEA; border: 1px solid #EEDFE0; border-radius: 12px; padding: 4px 10px; } ul.kikiAi_auto_suggestion__list { align-items: center; } ul.kikiAi_auto_suggestion__list:before { content: url(https://cdn.kindlife.in/images/ui_icon/kiki-app-sm-icon.svg); } /* css for write a review stars start */ div .ty-product-review-rate__stars-label:before, div .ty-product-review-rate__stars-radio:checked ~ .ty-product-review-rate__stars-label:before, div .ty-product-review-rate__stars-label:hover:before, div .ty-product-review-rate__stars-label:hover ~ .ty-product-review-rate__stars-label:before { content: ''; background: var(--ty-product-reviews-stars-empty) no-repeat; background-size: contain; } div .ty-product-review-rate__stars-radio:checked ~ .ty-product-review-rate__stars-label:before { background-image: var(--ty-product-reviews-stars-full); } div .ty-product-review-rate__stars-label:hover:before { background-image: var(--ty-product-reviews-stars-full); } div .ty-product-review-rate__stars-label:hover ~ .ty-product-review-rate__stars-label:before { background-image: var(--ty-product-reviews-stars-full); } /* css for write a review stars end*/ .ty-product-option-container { display: inline-flex; align-items: center; gap: 5px; margin-bottom: 10px; } .pdp-top-left .ty-product-review-reviews-stars { font-weight: 500; } .bk_pdp_desc_wraper .ty-product-review-reviews-stars:before { display: inline-block; vertical-align: middle; font-size: 18px; } span.pro_rat_scr { letter-spacing: 0; } .pdp-top-left.have_pro_score { display: none; } .pdp-top-left:has(.rat_count) { display: inline-flex; align-items: center; } div .pdp-active-offer-content { flex-wrap: nowrap; overflow: auto; } div .pdp_offerBanner + ul { overflow: unset; } div .pdp_offerBanner { flex: 0 0 203px; } @media (min-width: 767px) { .bk_pdp_bestPrice-block { width: fit-content; } } @media (max-width: 480px) { div .pdp_offerBanner { flex: 0 0 218px; } .pro_img img { width: 100%; } } </style> <script> $(".bk_feature_pdpShipment.bk_pdpShipment-block").remove(); </script> {if (in_array($product.product_id,array(68584)))} <style> div .pdp_comp_details_but_tab, div .pdp_tab_right, div #features, div #product_tab_14, div #product_tab_25, div #product_reviews, div #kindcode, div .bk_pdp_wishlist_block, div .delivery_custom_msg { display: none; } div .bk-returnPeriodBlock { padding: 0; border: 0; } </style> <script> $(".bk_delivery").text("Tickets will be sent to your inbox before the event. One pass permits one entry.") </script> {/if}";} 0 3346 3 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en temporary css fixing
2183 2166 a:1:{s:7:"content";s:5873:"<style> .tygh-header .hamburgur_icon, .tygh-header .top-logo, .tygh-header .top-wishlist, .tygh-header .top-notification, .tygh-header .ty-dropdown-box, .tygh-header .top-search, .tygh-header .bk_backBtn { position: relative; line-height: 60px; height: 60px; width: 50px; text-align: center; padding: 0 !important; } .tygh-header .bk_backBtn{ cursor: pointer; width: 40px; } .tygh-header .top-wishlist a, .tygh-header .top-notification a, .tygh-header .ty-dropdown-box a, .tygh-header .top-logo a, .tygh-header .hamburgur_icon a, .tygh-header .top-search a { display: block; padding: 0 !important; float: none; } .tygh-header .top-logo { width: 130px; } .tygh-header .top-logo svg { vertical-align: middle; } .tygh-header .hamburgur_icon a i, .tygh-header .ty-wishlist, .tygh-header .ty-minicart__icon { font-size: 24px; vertical-align: middle; color: #1b1c1e; position: static; display: inline-block; } .tygh-header .bk_backBtn img { width: 22px; } .open_search_box { padding: 0; width: 100%; } .tygh-header .top-search a > img { width: 24px; float: none; display: inline-block; } .ty-minicart-title { position: absolute; width: 18px; height: 18px; color: #fff; font-size: 10px; font-weight: 600; line-height: 18px; text-align: center; right: 5px; top: 10px; background: #F07F87; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; box-sizing: content-box; border: #fff solid 1px; } .ty-search-block_1 form { position: relative; margin: 0 10px 0; height: auto; line-height: 60px; } button.ty-icon-magnifiercartxdnew { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border: none; background: url('../../../../../../../../design/themes/new_2bk/media/images/banners/home-page/magnifier_icon1.png?1678953024') no-repeat; background-size: 18px 18px; opacity: 50%; } .ty-search-block_1 form input.ty-search-block__input { display: inline-block; padding: 7px 30px 7px 10px; width: 100%; height: 40px; border: none; border-radius: 30px; background-color: rgba(237,242,248,0.45); -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .ty-search-block__input:focus { background-color: #fcfcfc; } .bk_overlay-search_cat { position: fixed; display: none; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; background-color: #fff; z-index: 100; } .tygh-header .bk_backBtn1 { line-height: 48px; height: 48px; min-width: 40px; text-align: center; position: relative; margin: 0; padding: 0; } .tygh-header .bk_backBtn1 img { width: 22px; cursor: pointer; } .tygh-header .ty-search-block_category_bk form { display: flex; background: #fcfcfc; border: 0; padding: 16px 10px 5px 0; position: relative; } input.ty-search-block__input_category_bk { padding: 10px 30px 10px 15px !important; flex: 1; height: 48px !important; border: 1px solid #EFEAFB !important; border-radius: 22px !important; background-color: #F6F9FF !important; -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } input.ty-search-block__input_category_bk:focus { border-color: #ccc; } span.search_textDelete { position: absolute; right: 15px; top: 50%; margin-top: -6px; display: none; cursor: pointer; } div.ty-search-block_1 { margin: 0; padding: 0; border: 0; width: 100%; } div.ty-dropdown-box__title { padding: 0; border: 0; position: static; display: block; } @media (max-width: 766px){ .top-cart { padding-right: 0px; } .tygh-header .top-logo { width: 116px; } } @media (max-width: 480px){ .tygh-header .hamburgur_icon, .tygh-header .top-wishlist, .tygh-header .top-notification, .tygh-header .ty-dropdown-box, .tygh-header .top-search, .tygh-header .bk_backBtn { width: 40px; line-height: 50px; height: 50px; } .tygh-header .top-logo, .ty-search-block_1 form { line-height: 50px; height: 50px; } } .banners .owl-controls { position: absolute; bottom: 0; margin: 0; width: 100%; } .banners.owl-carousel .owl-wrapper-outer { border-radius: 10px; } .banners.owl-carousel .owl-item { padding: 0; } .owl-controls .owl-pagination { text-align: center; } div.owl-theme .owl-controls .owl-page span { width: 10px; transition: all 1s; } .owl-theme .owl-controls .owl-page.active span { width: 20px; } .tygh-header .top-logo a { padding: 0 !important; } .tygh-header .top-wishlist, .tygh-header .top-notification, .tygh-header .ty-dropdown-box, .tygh-header .top-search { padding: 0; } .tygh-header .top-wishlist a, .tygh-header .top-notification a, .tygh-header .ty-dropdown-box a, .tygh-header .top-logo a, .tygh-header .hamburgur_icon a, .tygh-header .top-search a { padding: 0px; } .owl-carousel:not(.owl-theme):not(.owl-one-theme):not(.owl-more-theme) { white-space: nowrap; overflow: hidden; } .owl-carousel:not(.owl-theme):not(.owl-one-theme):not(.owl-more-theme) > * { display: inline-block; } </style>";} 0 9388 3 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en top header icons temp css
2212 11 0 3347 4 A main 0 1 en Main Content
2188 171 a:1:{s:7:"content";s:305:"<div> <a href="/index.php" title="online shopping" itemprop="url"> <img src="https://cdn.kindlife.in/images/lotti-icons/Kindlife-logo.png" alt="kiki-logo" width="130" height="25"> <!-- <img src="https://cdn.kindlife.in/images/kindlifeLogo.png" alt="kiki-logo"> --> </a> </div>";} 0 3305 top-logo 4 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en Logo_2BK
2190 187 a:1:{s:7:"content";s:90:"<div> <a href="#"><i class="ty-notification__icon ty-icon-notificationxd"></i> </a> </div>";} 0 3309 top-notification bk-pull-right 4 D html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en new notification
2183 2143 a:1:{s:7:"content";s:363:"<style> .ty-mainbox-body button:active, .correct-scroller .ty-scroller-list__item:active, .bk_header_right a i:active, .ty-banner__image-item:active, .ty-wysiwyg-content button:active, .ty-wysiwyg-content a svg:active{ filter: opacity(0.6); } .ty-wysiwyg-content a:active, .ty-wysiwyg-content a img:active{ filter: contrast(0.8); } </style>";} 0 9594 4 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en faded effect css for all buttons/links
2214 3141 a:1:{s:5:"items";a:6:{s:7:"filling";s:7:"similar";s:5:"limit";s:1:"8";s:13:"percent_range";s:0:"";s:16:"similar_category";s:1:"Y";s:15:"similar_subcats";s:1:"Y";s:16:"similar_in_stock";s:1:"Y";}} 0 11089 blocks/wrappers/mainbox_simple.tpl 4 A products_new a:8:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"250";s:8:"hide_tag";s:1:"N";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 en Similar Products
2190 231 a:1:{s:7:"content";s:87:"<div class="open_search_box"> <a href="#"><img src="images/search_bt.svg"></a> </div>";} 0 3310 top-search bk-pull-right hidden-desktop hidden-tablet 5 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en search_bt
2214 3133 a:1:{s:6:"blocks";s:134:"<p><b title="Products related to this item" class="wysiwyg-block-loader cm-block-loader cm-block-loader--tbSoAASWwns="></b></p><p></p>";} 0 11073 blocks/wrappers/mainbox_simple.tpl 5 D kl_load_block_by_ajax a:1:{s:8:"template";s:60:"addons/my_changes/blocks/kl_features/product/ajax_blocks.tpl";} 0 1 en Products related to this item
2190 232 a:1:{s:7:"content";s:60:"<div> <a href="#"><img src="images/share_bt.svg"></a> </div>";} 0 3311 top-share bk-pull-right 6 D html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 en share_bt
2214 339 a:3:{s:5:"items";a:3:{s:7:"filling";s:12:"most_popular";s:5:"limit";s:2:"10";s:3:"cid";s:0:"";}s:10:"show_block";s:2:"AW";s:11:"enable_ajax";s:1:"N";} 0 3349 blocks/wrappers/mainbox_simple.tpl 6 D products a:8:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:10:"show_price";s:1:"Y";s:11:"show_rating";s:1:"Y";s:15:"show_brand_name";s:1:"Y";s:15:"thumbnail_width";s:3:"250";s:17:"show_share_button";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";s:10:"block_type";s:6:"slider";} 0 1 en You can also view
2190 4 0 3312 blocks/wrappers/onclick_dropdown.tpl top-my-account bk_topMyAccount 7 D my_account a:1:{s:8:"template";s:21:"blocks/my_account.tpl";} 0 1 en My Account
2214 3135 a:1:{s:6:"blocks";s:122:"<p><b title="You can also view" class="wysiwyg-block-loader cm-block-loader cm-block-loader--nngAfq7fnIw="></b></p><p></p>";} 0 11075 blocks/wrappers/mainbox_simple.tpl 7 D kl_load_block_by_ajax a:1:{s:8:"template";s:60:"addons/my_changes/blocks/kl_features/product/ajax_blocks.tpl";} 0 1 en You can also view
2190 334 a:1:{s:7:"content";s:3764:"<style> .bk_communityBtn { height: 60px; display: flex; align-items: center; margin-right: 5px; } .bk_community_tab a { color: #1b1c1e; display: inline-block; line-height: 30px; padding: 0 10px; border-radius: 12px; border: solid 1px #767284; margin: 0; font-size: 13px; } .bk_top_Btns_wrap { display: flex; column-gap: 12px; align-items: center; } .bk_kiki-ai_Btnwrap a { display: flex; align-items: center; column-gap: 5px; font-size: 13px; border: solid 1px #767284; color: #1b1c1e; border-radius: 12px; padding: 0px 10px; line-height: 30px; } .bk_kiki-ai_Btnwrap .kiki-imgBtn svg { width: 22px; height: 22px; vertical-align: middle; } .bk_kiki-ai_Btnwrap .kiki-imgBtn img { width: 16px; } @media (max-width:900px){ .bk_kiki-ai_Btnwrap { display: none; } } </style> <div class="bk_top_Btns_wrap"> <div class="bk_kiki-ai_Btnwrap" title="Talk to kiki.Ai"> <a href="index.php?dispatch=kl_qna.kiki_ai"> <span class="kiki-imgBtn"> <svg xmlns="http://www.w3.org/2000/svg" width="27.91" height="24.41" viewBox="0 0 27.91 24.41"> <g id="WeChat" transform="translate(0 -3)"> <path id="Path_25434" data-name="Path 25434" d="M11.775,21.484c4.666-.567,8.286-4.012,8.286-8.2C20.06,8.707,15.787,5,10.466,5a10.542,10.542,0,0,0-4.274.872l-.349-.785A9.081,9.081,0,0,0,0,13.286,8.634,8.634,0,0,0,2.573,19.3l-.785,2.922a.9.9,0,0,0,.305.916.784.784,0,0,0,.959.044l2.835-1.657a11.449,11.449,0,0,0,4.579.916c.48,0,.959-.044,1.4-.087Z" transform="translate(0 -1.128)" fill="#19a895"></path> <path id="Path_25435" data-name="Path 25435" d="M15.775,13.105A1.308,1.308,0,1,0,14.466,11.8,1.285,1.285,0,0,0,15.775,13.105Zm-6.105,0A1.308,1.308,0,1,0,8.361,11.8,1.285,1.285,0,0,0,9.669,13.105Zm3.053,6.105c4.8,0,8.722-.7,8.722-4.8S17.519,7,12.722,7,4,10.314,4,14.414,7.925,19.211,12.722,19.211Z" transform="translate(-2.256 -2.256)" fill="#c2ede8" fill-rule="evenodd"></path> <path id="Path_25436" data-name="Path 25436" d="M40.515,28.793h.872a7.427,7.427,0,0,1-2.4,5.408l.611,2.224a.827.827,0,0,1-.349.916.851.851,0,0,1-1,0l-2.093-1.4a9.423,9.423,0,0,1-3.532.654c-4.71,0-8.722-3.4-8.722-7.85s4.012-7.85,8.722-7.85a7.066,7.066,0,0,1,.959.044l-.087.872A8.18,8.18,0,0,1,40.515,28.793Z" transform="translate(-13.477 -10.094)" fill="#e0c3f6"></path> <path id="Path_25437" data-name="Path 25437" d="M41.955,31.105c0,3.358-3.14,4.361-6.978,4.361S28,34.463,28,31.105,31.14,25,34.978,25,41.955,27.747,41.955,31.105Z" transform="translate(-15.789 -12.406)" fill="#fff"></path> <path id="Path_25438" data-name="Path 25438" d="M17.12,4.744a9.679,9.679,0,0,0-4.535,1.09L11.8,4.265A11.959,11.959,0,0,1,17.12,3c5.233,0,9.725,3.4,10.379,7.981,3.968.7,7.065,3.838,7.065,7.719a7.427,7.427,0,0,1-2.4,5.408L31.642,22.1a5.641,5.641,0,0,0,1.177-3.4c0-3.053-2.617-5.713-6.193-6.062l-.741-.087-.044-.741C25.624,7.971,21.917,4.744,17.12,4.744Zm6.105,12.211a.872.872,0,1,0-.872-.872A.875.875,0,0,0,23.226,16.955Zm5.233,0a.872.872,0,1,0-.872-.872A.875.875,0,0,0,28.459,16.955Z" transform="translate(-6.654)" fill="#314a52"></path> </g> </svg> <!-- <img src="https://cdn.kindlife.in/images/banners/home-page-images/bk-vday-heart0602.png" alt=""> --> </span> <span class="kiki-btnText">Discover with Ai</span> </a> </div> <div class="bk_community_tab"> <a href="https://www.kindlife.in/community">Community</a> </div> </div>";} 0 3314 hidden-phone bk_communityBtn 8 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Community Page Button
2214 2869 0 10416 blocks/wrappers/mainbox_simple.tpl 8 D kc_collection_pdp_block a:1:{s:8:"template";s:64:"addons/kl_account/blocks/kl_features/kc_collection_pdp_block.tpl";} 0 1 en Collections for you
2190 805 a:1:{s:7:"content";s:587:"<style> .bk_perfquiz_tab { height: 60px; display: flex; align-items: center; } .bk_perfectMatch_Tab a { color: #fff; display: inline-block; height: 30px; line-height: 30px; padding: 0 15px; border-radius: 5px; border: solid 1px #705182; background-color: #705182; } @media (max-width:850px){ .bk_perfectMatch_Tab a { font-size: 12px; padding: 0 10px; } } </style> <div class="bk_perfquiz_tab"> <a class="bk_perfectMatch_Tab" href="{"kindsale.quiz"|fn_url}">Personalised Routine</a> </div>";} 0 4452 bk_perfectMatch_Tab hidden-phone 9 D smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en Find you match tab header
2214 3119 a:1:{s:6:"blocks";s:123:"<p><b title="Similar Products" class="wysiwyg-block-loader cm-block-loader cm-block-loader--Hm8MspxWKuY="></b></p> <p></p>";} 0 11033 blocks/wrappers/mainbox_simple.tpl 9 D kl_load_block_by_ajax a:1:{s:8:"template";s:60:"addons/my_changes/blocks/kl_features/product/ajax_blocks.tpl";} 0 1 en Similar Products
2214 3120 a:1:{s:6:"blocks";s:124:"<p><b title="You might also like" class="wysiwyg-block-loader cm-block-loader cm-block-loader--jG4uZz3iA/k="></b></p><p></p>";} 0 11034 blocks/wrappers/mainbox_simple.tpl 10 D kl_load_block_by_ajax a:1:{s:8:"template";s:60:"addons/my_changes/blocks/kl_features/product/ajax_blocks.tpl";} 0 1 en You might also like
2214 3121 a:1:{s:6:"blocks";s:122:"<p><b title="Specially For you" class="wysiwyg-block-loader cm-block-loader cm-block-loader--nngAfq7fnIw="></b></p><p></p>";} 0 11035 blocks/wrappers/mainbox_simple.tpl 11 D kl_load_block_by_ajax a:1:{s:8:"template";s:60:"addons/my_changes/blocks/kl_features/product/ajax_blocks.tpl";} 0 1 en Specially for you
2214 2943 a:12:{s:20:"writeup_content_type";s:7:"uniform";s:15:"profile_picture";s:9:"static_dp";s:13:"show_products";s:1:"Y";s:17:"product_card_type";s:26:"product_vertical_rectangle";s:19:"categorize_products";s:13:"no_categories";s:26:"show_relevant_product_tags";s:1:"N";s:11:"show_videos";s:6:"no_vid";s:16:"block_top_margin";s:11:"give_margin";s:16:"show_collections";s:7:"no_coll";s:15:"update_quiz_btn";s:9:"no_update";s:35:"default_content_if_quiz_ans_missing";s:18:"no_default_content";s:14:"show_variables";s:2:"no";} 0 10933 pdp-korean 12 D kl_user_personal_ai_block a:10:{s:8:"template";s:65:"addons/kl_personal_page/views/kl_personal_page/content/slider.tpl";s:11:"layout_type";s:6:"slider";s:24:"not_scroll_automatically";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:3:"2.5";s:20:"writeup_content_type";a:1:{s:7:"uniform";a:2:{s:11:"header_type";s:13:"static_header";s:16:"header_alignment";s:4:"left";}}s:11:"header_type";a:1:{s:13:"static_header";a:4:{s:5:"title";s:28:"Korean beauty to your rescue";s:9:"sub_title";s:43:"Korean beauty has a lot to offer to you {6}";s:10:"short_info";s:0:"";s:41:"comma_separated_keywords_to_fetch_content";s:56:"Kbeauty, Korean Beauty, COSRX, Snail Mucin, Rice Extract";}}s:15:"profile_picture";a:1:{s:9:"static_dp";a:2:{s:14:"staticl_dp_url";s:86:"https://cdn.kindlife.in/images/banners/home-page-images/HP-1602-top-ctgry-kbeauty.webp";s:16:"dp_display_style";s:10:"background";}}s:16:"block_top_margin";a:1:{s:11:"give_margin";a:1:{s:12:"margin_in_px";s:2:"15";}}} 0 1 en Koren Beauty
2214 2486 0 11185 13 A user_recently_viewed_data_block a:2:{s:8:"template";s:66:"addons/kl_account/blocks/kl_features/user_recently_viewed_data.tpl";s:11:"no_of_items";s:1:"6";} 0 1 en recently viewed product by user
2214 1161 a:1:{s:7:"content";s:250:"<style> .cp-video-grid { display: flex; flex-wrap: nowrap; column-gap: 12px; overflow: auto; } .cp-video-grid::-webkit-scrollbar { display: none; } .cp-video-grid .cp-video-grid__item { flex: 0 0 200px; } </style>";} 0 6320 14 A smarty_block a:2:{s:8:"template";s:23:"blocks/smarty_block.tpl";s:21:"kl_app_webview_height";s:3:"300";} 0 1 en cp video css