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 '' 
  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 = 0 
  AND dynamic_object_content.object_type like '' 
WHERE 
  cscart_bm_snapping.grid_id IN (
    798, 799, 800, 805, 801, 802, 803, 804, 
    1226, 808, 809, 810, 811, 812, 814, 1228, 
    1227, 813, 816, 819, 820, 821, 822, 824, 
    825, 827, 829, 830, 831, 833, 834, 835, 
    837, 838, 840, 841, 844, 848, 845, 846, 
    847, 850, 853, 854, 859, 860, 828, 817, 
    851, 818, 823, 826, 832, 836, 839, 842, 
    843, 849, 852, 855, 856, 857, 858
  ) 
  AND cscart_bm_blocks_descriptions.lang_code = 'en' 
ORDER BY 
  cscart_bm_snapping.order, 
  cscart_bm_snapping.block_id

Query time 0.00463

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "read_sorted_file": {
          "filesort": {
            "sort_key": "cscart_bm_snapping.`order`, cscart_bm_snapping.block_id",
            "table": {
              "table_name": "cscart_bm_snapping",
              "access_type": "range",
              "possible_keys": ["grid_id"],
              "key": "grid_id",
              "key_length": "4",
              "used_key_parts": ["grid_id"],
              "rows": 91,
              "filtered": 100,
              "index_condition": "cscart_bm_snapping.grid_id in (798,799,800,805,801,802,803,804,1226,808,809,810,811,812,814,1228,1227,813,816,819,820,821,822,824,825,827,829,830,831,833,834,835,837,838,840,841,844,848,845,846,847,850,853,854,859,860,828,817,851,818,823,826,832,836,839,842,843,849,852,855,856,857,858)"
            }
          }
        }
      },
      {
        "table": {
          "table_name": "cscart_bm_blocks",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "4",
          "used_key_parts": ["block_id"],
          "ref": ["demov2026.cscart_bm_snapping.block_id"],
          "rows": 1,
          "filtered": 100
        }
      },
      {
        "table": {
          "table_name": "cscart_bm_blocks_descriptions",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "10",
          "used_key_parts": ["block_id", "lang_code"],
          "ref": ["demov2026.cscart_bm_snapping.block_id", "const"],
          "rows": 1,
          "filtered": 100,
          "index_condition": "cscart_bm_blocks_descriptions.lang_code = 'en'"
        }
      },
      {
        "table": {
          "table_name": "cscart_bm_block_statuses",
          "access_type": "ref",
          "possible_keys": ["snapping_id"],
          "key": "snapping_id",
          "key_length": "4",
          "used_key_parts": ["snapping_id"],
          "ref": ["demov2026.cscart_bm_snapping.snapping_id"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(cscart_bm_snapping.snapping_id = cscart_bm_block_statuses.snapping_id and cscart_bm_block_statuses.object_type like '')"
        }
      },
      {
        "table": {
          "table_name": "default_content",
          "access_type": "ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "18",
          "used_key_parts": ["block_id", "snapping_id", "lang_code", "object_id"],
          "ref": [
            "demov2026.cscart_bm_snapping.block_id",
            "const",
            "demov2026.cscart_bm_blocks_descriptions.lang_code",
            "const"
          ],
          "rows": 2,
          "filtered": 100,
          "attached_condition": "trigcond(default_content.object_type like '')"
        }
      },
      {
        "table": {
          "table_name": "dynamic_object_content",
          "access_type": "ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "4",
          "used_key_parts": ["block_id"],
          "ref": ["demov2026.cscart_bm_snapping.block_id"],
          "rows": 6,
          "filtered": 100,
          "attached_condition": "trigcond(dynamic_object_content.lang_code = cscart_bm_blocks_descriptions.lang_code and dynamic_object_content.object_id = 0 and dynamic_object_content.object_type like '')"
        }
      }
    ]
  }
}

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
798 67 0 977 0 D geo_maps_customer_location a:1:{s:8:"template";s:44:"addons/geo_maps/blocks/customer_location.tpl";} 0 1 en Customer location
809 82 0 993 blocks/wrappers/footer_general.tpl 0 A template a:1:{s:8:"template";s:44:"blocks/static_templates/my_account_links.tpl";} 0 1 en Your account
810 83 a:1:{s:7:"content";s:611:" <ul id="demo_store_links"> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=2"|fn_url}">About us</a></li> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=30"|fn_url}">Contact us</a></li> <li class="ty-footer-menu__item"><a href="{"gift_certificates.add"|fn_url}">Gift certificates</a></li> <li class="ty-footer-menu__item"><a href="{"product_features.view_all?filter_id=10"|fn_url}">Our brands</a></li> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=7"|fn_url}">Blog</a></li> <li class="ty-footer-menu__item"><a href="{"sitemap.view"|fn_url}">Sitemap</a></li> </ul>";} 0 994 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 0 D safe_smarty_block a:1:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";} 0 1 en K Coffee Store
812 85 a:1:{s:7:"content";s:669:"<ul> <li>г. {$settings.Company.company_city}, {$settings.Company.company_address}</li> <li><a href="tel:{$settings.Company.company_phone}"><bdi>{$settings.Company.company_phone}</bdi></a></li> <li><a href="tel:{$settings.Company.company_phone_2}"><bdi>{$settings.Company.company_phone_2}</bdi></a></li> <li>{__('weekday_abr_1')}-{__('weekday_abr_0')} 9.00 - 18.00</li> <li><a class="ty-exception__links-a greeny" href="mailto:{$settings.Company.company_users_department}">{$settings.Company.company_users_department}</a></li> <li><a href="{'pages.view&page_id=20'|fn_url}" class="ty-exception__links-a">{__('view_on_map')}</a></li> </ul>";} 0 996 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 0 A safe_smarty_block a:8:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Contact Us
816 88 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:8:"66,41,74";}} 0 999 homepage-banners 0 A banners a:13:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"500px";s:13:"height_mobile";s:5:"200px";s:5:"delay";s:2:"12";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:19:"main_banner_default";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:3:"455";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Main banners
817 89 a:1:{s:4:"menu";i:9;} 0 1000 blocks/wrappers/abt__ut2__mainbox_general.tpl 0 D ab__fast_navigation a:9:{s:8:"template";s:74:"addons/ab__fast_navigation/blocks/ab__fast_navigation/ab__fn_one_level.tpl";s:19:"ab__fn_display_type";s:11:"ab__fn_grid";s:32:"ab__fn_number_of_columns_desktop";s:2:"10";s:38:"ab__fn_number_of_columns_desktop_small";s:1:"6";s:31:"ab__fn_number_of_columns_tablet";s:1:"5";s:37:"ab__fn_number_of_columns_tablet_small";s:1:"4";s:31:"ab__fn_number_of_columns_mobile";s:1:"3";s:17:"ab__fn_icon_width";s:3:"100";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 en AB: Fast Navigation Catalog
819 90 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"57,33";}} 0 1001 homepage-banners 0 D banners a:11:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_1";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 1
820 93 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"59,30";}} 0 1004 0 D banners a:11:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_4";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 4
821 95 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"60,28";}} 0 1006 0 D banners a:11:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_6";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 6
822 96 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"61,32";}} 0 1007 0 D banners a:11:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_8";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 8
822 97 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"64,26";}} 0 1008 0 D banners a:11:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_7";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 7
824 98 0 1009 0 A template a:12:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"N";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en <b>Products Just <mark>For You</mark></b>
825 99 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:199:"292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,330,331,332,333,334,335,338,339,340,341,342,343,344,345,346,347";}} 0 1010 0 A products a:19:{s:8:"template";s:46:"blocks/products/products_scroller_advanced.tpl";s:10:"show_price";s:1:"Y";s:17:"enable_quick_view";s:1:"N";s:24:"not_scroll_automatically";s:1:"N";s:15:"scroll_per_page";s:1:"N";s:15:"thumbnail_width";s:0:"";s:25:"abt__ut2_thumbnail_height";s:0:"";s:5:"speed";s:3:"400";s:5:"delay";s:4:"1000";s:13:"item_quantity";s:1:"5";s:18:"outside_navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"430";s:22:"skeleton_height_tablet";s:3:"415";s:22:"skeleton_height_mobile";s:3:"390";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"B";s:23:"abt__ut2_url_new_window";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"Y";} 0 1 en Most Popular
827 102 0 1013 0 A template a:12:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"Y";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en <b>Mid-Autumn Festival <mark>Best Choice</mark><!--</span-->
831 104 a:1:{s:5:"items";a:6:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:1:"1";s:5:"limit";s:1:"4";s:3:"cid";s:3:"297";s:27:"abt__ut2_mv_vendor_products";s:1:"N";}} 0 1015 ut2-color-box 0 D products a:12:{s:8:"template";s:40:"blocks/products/products_small_items.tpl";s:11:"item_number";s:1:"N";s:15:"thumbnail_width";s:2:"90";s:16:"thumbnail_height";s:3:"100";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"367";s:22:"skeleton_height_tablet";s:3:"309";s:22:"skeleton_height_mobile";s:3:"292";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 en 02 - Seasonal [products]
830 105 a:1:{s:5:"items";a:6:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:1:"1";s:5:"limit";s:1:"4";s:3:"cid";s:3:"318";s:27:"abt__ut2_mv_vendor_products";s:1:"N";}} 0 1016 ut2-gray-box 0 D products a:12:{s:8:"template";s:61:"addons/product_variations/blocks/products/variations_list.tpl";s:46:"product_variations.hide_add_to_wishlist_button";s:1:"N";s:44:"product_variations.show_variation_thumbnails";s:1:"Y";s:36:"product_variations.show_product_code";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"562";s:22:"skeleton_height_tablet";s:3:"576";s:22:"skeleton_height_mobile";s:3:"546";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 en 03 - Seasonal [products]
833 109 0 1020 0 A template a:12:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"N";s:22:"abt__ut_big_size_title";s:3:"big";s:21:"abt__ut_title_opacity";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Weekend Special Offer <mark>Where you go for a cup of coffee</ma
835 111 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:11:"46,67,68,69";}} 0 1022 0 A banners a:15:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_multiple.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"450px";s:13:"height_mobile";s:5:"350px";s:13:"minimal_width";s:5:"300px";s:19:"multiple_mode_items";s:1:"4";s:10:"navigation";s:1:"L";s:5:"delay";s:1:"6";s:22:"abt__ut2_demo_block_id";s:9:"banner_15";s:23:"skeleton_height_desktop";s:3:"455";s:22:"skeleton_height_tablet";s:3:"455";s:22:"skeleton_height_mobile";s:3:"455";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 15
837 112 0 1023 0 A template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"N";s:22:"abt__ut_big_size_title";s:3:"big";s:21:"abt__ut_title_opacity";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 en <mark>Special Deals</mark> for member in this month
840 114 0 1025 0 D template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"N";s:22:"abt__ut_big_size_title";s:3:"big";s:21:"abt__ut_title_opacity";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 en The <mark>best cameras</mark> today
841 115 a:1:{s:5:"items";a:6:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:1:"1";s:5:"limit";s:2:"10";s:3:"cid";s:0:"";s:27:"abt__ut2_mv_vendor_products";s:1:"N";}} 0 1026 0 D products a:9:{s:8:"template";s:30:"blocks/products/short_list.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"357";s:22:"skeleton_height_tablet";s:3:"431";s:22:"skeleton_height_mobile";s:3:"371";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 en The best cameras today
845 117 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"34,43";}} 0 1028 0 A banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:8:"banner_9";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";} 0 1 en AB: Banner 9
847 120 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"37";}} 0 1031 0 D banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_10";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";} 0 1 en AB: Banner 10
848 122 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"34";}} 0 1033 0 D banners a:13:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:9:"0 0 5px 0";s:6:"height";s:5:"500px";s:13:"height_mobile";s:5:"500px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:9:"banner_17";s:23:"skeleton_height_desktop";s:3:"500";s:22:"skeleton_height_tablet";s:3:"500";s:22:"skeleton_height_mobile";s:3:"500";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 17
829 123 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"34";}} 0 1497 0 A banners a:15:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_multiple.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:13:"minimal_width";s:5:"360px";s:19:"multiple_mode_items";s:1:"3";s:10:"navigation";s:1:"L";s:5:"delay";s:1:"3";s:22:"abt__ut2_demo_block_id";s:9:"banner_16";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 16
851 125 a:1:{s:9:"promotion";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"30";}} 0 1036 0 A ab__deal_of_the_day a:12:{s:8:"template";s:57:"addons/ab__deal_of_the_day/blocks/ab__deal_of_the_day.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"400";s:22:"skeleton_height_tablet";s:3:"426";s:22:"skeleton_height_mobile";s:3:"734";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"Y";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:23:"hide_add_to_cart_button";s:1:"N";s:31:"ab__dotd_enable_countdown_timer";s:1:"Y";} 0 1 en AB: Deal of the day
853 126 0 1037 0 A template a:12:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"Y";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en UPDATE ALL PROMOTIONS ARE RUNNING
855 128 0 1039 0 A template a:12:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"Y";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en STAY UP DATE WITH US <mark>NEWS</mark>
856 130 a:1:{s:7:"content";s:835:"<p>Our&nbsp;<b>sustainable agriculture e-commerce platform</b>&nbsp;serves as a trusted "green bridge," directly connecting eco-conscious producers with smart consumers.</p> <p>This specialized e-commerce marketplace brings together certified&nbsp;<b>organic farms</b>&nbsp;and&nbsp;<b>sustainable agriculture</b>cooperatives that meet strict VietGAP and GlobalGAP standards. Here, every product&mdash;from fresh produce and&nbsp;<b>clean food</b>&nbsp;to natural herbal remedies&mdash;comes with transparent origin tracking powered by modern traceability technology.</p> <p>By optimizing the supply chain and eliminating unnecessary middlemen, the platform not only boosts income for ethical farmers but also provides a safe shopping solution, promoting a healthy,&nbsp;<b>eco-friendly lifestyle</b>&nbsp;for the entire community.</p>";} 0 1041 blocks/wrappers/abt__ut2__mainbox_general.tpl 0 A html_block a:2:{s:8:"template";s:21:"blocks/html_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 en About company
859 133 0 1044 0 A template a:5:{s:8:"template";s:46:"blocks/static_templates/subscribe_advanced.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"178";s:22:"skeleton_height_tablet";s:3:"188";s:22:"skeleton_height_mobile";s:3:"192";} 0 1 en AB: Subscribe
801 197 0 983 top-logo 0 A template a:3:{s:8:"template";s:32:"blocks/static_templates/logo.tpl";s:11:"enable_link";s:1:"Y";s:17:"abt__ut2_fly_menu";s:8:"top_logo";} 0 1 en Logo
803 199 0 986 hidden-phone 0 A template a:2:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__top_buttons.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 en AB: Buttons Compare and Wishlist
802 205 0 984 ut2-search 0 A template a:2:{s:8:"template";s:34:"blocks/static_templates/search.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 en Search
804 205 0 989 0 A template a:2:{s:8:"template";s:34:"blocks/static_templates/search.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 en Search
811 218 a:1:{s:4:"menu";s:2:"14";} 0 1531 blocks/wrappers/footer_general.tpl 0 A menu a:10:{s:8:"template";s:26:"blocks/menu/text_links.tpl";s:18:"show_items_in_line";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:27:"open_on_sticky_panel_button";s:1:"N";} 0 1 en Customer Service
1228 221 a:1:{s:7:"content";s:1041:"<div class=" " id="snapping_id_payment"> <div class="ty-payment-icons"> <span class="ty-payment-icons__item" style="background: none;width: 50px; height: auto"> <image src="/images/icons/momo.jpg" width="50"/> </span> <span class="ty-payment-icons__item" style="background: none;width: 50px; height: auto"> <image src="/images/icons/visa.jpg" width="50"/> </span> <span class="ty-payment-icons__item" style="background: none;width: 50px; height: auto"> <image src="/images/icons/master-card.jpg" width="50"/> </span> <span class="ty-payment-icons__item" style="background: none;width: 50px; height: auto"> <image src="/images/icons/paypal.jpg" width="450"/> </span> <span class="ty-payment-icons__item" style="background: none;width: 50px; height: auto"> <image src="/images/icons/bank-transfer.jpg" width="50"/> </span> <span class="ty-payment-icons__item" style="background: none;width: 50px; height: auto"> <image src="/images/icons/cod.jpg" width="50"/> </span> </div> </div>";} 0 1534 blocks/wrappers/sidebox_important.tpl 0 A safe_smarty_block a:8:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Payments methods
799 68 a:1:{s:4:"menu";s:2:"11";} 0 978 top-quick-links 1 A menu a:10:{s:8:"template";s:26:"blocks/menu/text_links.tpl";s:18:"show_items_in_line";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:8:"top_menu";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:27:"open_on_sticky_panel_button";s:1:"N";} 0 1 en Quick links
803 79 0 987 ut2-top-my-account 1 A my_account a:8:{s:8:"template";s:21:"blocks/my_account.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Account
819 91 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"62,29";}} 0 1002 1 D banners a:11:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_2";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 2
820 92 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"58,31";}} 0 1003 1 D banners a:11:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_3";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 3
821 94 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"63,27";}} 0 1005 1 D banners a:11:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"200px";s:22:"abt__ut2_demo_block_id";s:12:"banner_cat_5";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 5
825 100 a:1:{s:5:"items";a:6:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:1:"1";s:5:"limit";s:1:"6";s:3:"cid";s:11:"297,302,318";s:27:"abt__ut2_mv_vendor_products";s:1:"N";}} 0 1011 1 A products a:12:{s:8:"template";s:40:"blocks/products/products_small_items.tpl";s:11:"item_number";s:1:"N";s:15:"thumbnail_width";s:3:"100";s:16:"thumbnail_height";s:3:"100";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"430";s:22:"skeleton_height_tablet";s:3:"415";s:22:"skeleton_height_mobile";s:3:"390";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"Y";} 0 1 en Bestsellers
829 103 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"75";}} 0 1014 1 A banners a:13:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:8:"banner_9";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 9
830 106 a:1:{s:5:"items";a:6:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:1:"1";s:5:"limit";s:1:"4";s:3:"cid";s:3:"318";s:27:"abt__ut2_mv_vendor_products";s:1:"N";}} 0 1017 ut2-border-box 1 A products a:14:{s:8:"template";s:40:"blocks/products/products_links_thumb.tpl";s:11:"item_number";s:1:"N";s:20:"abt__ut2_icon_height";s:3:"100";s:19:"abt__ut2_icon_width";s:3:"100";s:22:"abt__ut2_columns_count";s:1:"2";s:21:"abt__ut2_use_scroller";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"292";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"340";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 en 01 - Seasonal [products]
831 108 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"49,70";}} 0 1019 1 A banners a:13:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_18";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 18
845 118 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:5:"36,39";}} 0 1029 1 A banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"3";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_12";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";} 0 1 en AB: Banner 12
848 123 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"34";}} 0 1034 1 D banners a:15:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_multiple.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:13:"minimal_width";s:5:"360px";s:19:"multiple_mode_items";s:1:"3";s:10:"navigation";s:1:"L";s:5:"delay";s:1:"3";s:22:"abt__ut2_demo_block_id";s:9:"banner_16";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en AB: Banner 16
853 124 0 1035 blocks/wrappers/mainbox_general.tpl 1 D template a:8:{s:8:"template";s:40:"blocks/static_templates/profile_info.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en The best deals of the day
856 131 0 1042 homepage-our-brands 1 D our_brands a:10:{s:8:"template";s:21:"blocks/our_brands.tpl";s:24:"not_scroll_automatically";s:1:"N";s:15:"scroll_per_page";s:1:"N";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:2:"10";s:11:"total_items";s:2:"10";s:15:"thumbnail_width";s:2:"75";s:18:"outside_navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 en Our brands
802 203 a:1:{s:13:"settings_link";s:0:"";} 0 981 hidden-tablet hidden-desktop 1 A abt__ut2_fly_menu a:15:{s:8:"template";s:50:"addons/abt__unitheme2/blocks/abt__ut2_fly_menu.tpl";s:30:"dropdown_second_level_elements";s:2:"30";s:29:"dropdown_third_level_elements";s:2:"30";s:40:"abt__no_hidden_elements_third_level_view";s:1:"5";s:31:"abt__ut2_view_more_btn_behavior";s:10:"view_items";s:19:"abt_menu_icon_items";s:1:"Y";s:19:"abt__ut2_show_title";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:27:"open_on_sticky_panel_button";s:1:"Y";} 0 1 en Menu
801 204 a:1:{s:4:"menu";s:1:"6";} 0 982 blocks/wrappers/onclick_dropdown.tpl top-menu-grid-vertical 1 D menu a:18:{s:8:"template";s:46:"blocks/menu/abt__ut2_dropdown_vertical_mwi.tpl";s:21:"abt__ut2_filling_type";s:14:"column_filling";s:22:"abt__ut2_columns_count";s:1:"4";s:30:"dropdown_second_level_elements";s:2:"30";s:29:"dropdown_third_level_elements";s:2:"30";s:40:"abt__no_hidden_elements_third_level_view";s:1:"5";s:31:"abt__ut2_view_more_btn_behavior";s:10:"view_items";s:19:"abt_menu_icon_items";s:1:"Y";s:22:"abt__menu_compact_view";s:1:"N";s:24:"abt__ut2_menu_min_height";s:3:"550";s:22:"abt__ut2_demo_block_id";s:9:"main_menu";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:27:"open_on_sticky_panel_button";s:1:"N";} 0 1 en Categories
1228 215 a:1:{s:7:"content";s:726:"<div class=" " id="snapping_id_"> <div class="ty-payment-icons"> <span class="ty-payment-icons__item" style="background: none;width: 80px; height: auto"> <image src="/images/icons/kcoffee.jpg" width="80"/> </span> <span class="ty-payment-icons__item" style="background: none;width: 80px; height: auto"> <image src="/images/icons/ahamove.jpg" width="80"/> </span> <span class="ty-payment-icons__item" style="background: none;width: 80px; height: auto"> <image src="/images/icons/vtp.jpg" width="80"/> </span> <span class="ty-payment-icons__item" style="background: none;width: 80px; height: auto"> <image src="/images/icons/ghn.jpg" width="80"/> </span> </div> </div> ";} 0 1528 blocks/wrappers/sidebox_important.tpl 1 A safe_smarty_block a:8:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Shipping methods
810 219 a:1:{s:4:"menu";s:1:"3";} 0 1532 blocks/wrappers/footer_general.tpl 1 A menu a:10:{s:8:"template";s:26:"blocks/menu/text_links.tpl";s:18:"show_items_in_line";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:27:"open_on_sticky_panel_button";s:1:"N";} 0 1 en K Coffee Store
799 69 0 979 top-currencies 2 A currencies a:4:{s:8:"template";s:21:"blocks/currencies.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:6:"format";s:6:"symbol";s:14:"dropdown_limit";s:1:"0";} 0 1 en Currencies
802 74 0 985 hidden-phone 2 A template a:12:{s:8:"template";s:46:"blocks/static_templates/abt__ut2__contacts.tpl";s:49:"abt__ut2__block_contacts_show_call_request_button";s:1:"Y";s:44:"abt__ut2__block_contacts_show_social_buttons";s:1:"Y";s:35:"abt__ut2__block_contacts_show_email";s:1:"Y";s:36:"abt__ut2__block_contacts_show_addres";s:1:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Contacts
803 78 0 988 ut2-top-cart-content 2 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 content
825 101 a:1:{s:5:"items";a:6:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:3:"100";s:5:"limit";s:2:"10";s:3:"cid";s:11:"297,314,315";s:27:"abt__ut2_mv_vendor_products";s:1:"N";}} 0 1012 2 A products a:11:{s:8:"template";s:41:"blocks/products/products_multicolumns.tpl";s:11:"item_number";s:1:"N";s:17:"number_of_columns";s:1:"5";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"430";s:22:"skeleton_height_tablet";s:3:"415";s:22:"skeleton_height_mobile";s:3:"390";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 en On Sale
834 110 a:1:{s:5:"items";a:6:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:1:"1";s:5:"limit";s:2:"10";s:3:"cid";s:0:"";s:27:"abt__ut2_mv_vendor_products";s:1:"N";}} 0 1021 2 A products a:19:{s:8:"template";s:46:"blocks/products/products_scroller_advanced.tpl";s:10:"show_price";s:1:"Y";s:17:"enable_quick_view";s:1:"N";s:24:"not_scroll_automatically";s:1:"Y";s:15:"scroll_per_page";s:1:"Y";s:15:"thumbnail_width";s:3:"210";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:5:"speed";s:3:"400";s:5:"delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:18:"outside_navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"357";s:22:"skeleton_height_tablet";s:3:"431";s:22:"skeleton_height_mobile";s:3:"371";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 en In demand this week
838 113 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:2:"12";s:3:"cid";s:0:"";}} 0 1024 2 A products a:11:{s:8:"template";s:33:"blocks/products/ab__grid_list.tpl";s:11:"item_number";s:1:"N";s:17:"number_of_columns";s:1:"6";s:21:"abt__ut2_loading_type";s:7:"onclick";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:15:"thumbnail_width";s:3:"210";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"357";s:22:"skeleton_height_tablet";s:3:"431";s:22:"skeleton_height_mobile";s:3:"371";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 en Most popular this month
842 116 0 1027 2 D template a:6:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"Y";s:29:"abt__ut_title_line_decoration";s:1:"Y";s:22:"abt__ut_big_size_title";s:7:"biggest";s:21:"abt__ut_title_opacity";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 en Discover some of <mark>our promotions</mark>
846 119 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"44";}} 0 1030 2 D banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"520px";s:13:"height_mobile";s:5:"520px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_11";s:23:"skeleton_height_desktop";s:3:"520";s:22:"skeleton_height_tablet";s:3:"520";s:22:"skeleton_height_mobile";s:3:"520";} 0 1 en AB: Banner 11
847 121 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"38";}} 0 1032 2 D banners a:10:{s:8:"template";s:66:"addons/abt__unitheme2/blocks/abt__ut2_banner_carousel_combined.tpl";s:6:"margin";s:1:"0";s:6:"height";s:5:"250px";s:13:"height_mobile";s:5:"250px";s:5:"delay";s:1:"7";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_13";s:23:"skeleton_height_desktop";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:22:"skeleton_height_mobile";s:3:"250";} 0 1 en AB: Banner 13
855 129 a:1:{s:5:"items";a:3:{s:7:"filling";s:25:"blog.abt_ut2_recent_posts";s:14:"parent_page_id";s:0:"";s:5:"limit";s:1:"7";}} 0 1040 2 A blog a:8:{s:8:"template";s:43:"addons/blog/blocks/abt_ut2_recent_posts.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"499";s:22:"skeleton_height_tablet";s:3:"500";s:22:"skeleton_height_mobile";s:4:"1045";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Stay updated with the latest news (blog)
857 132 0 1043 2 A main 0 1 en Main content
1228 134 a:1:{s:7:"content";s:683:"<div class="ut2-social-links" style="justify-content: unset"> <a target="_blank" href="your_social_link"><i class="ut2-icon-facebook"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-twitter"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-pinterest"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-instagram"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-youtube"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-tiktok"></i></a> <a target="_blank" href="your_social_link"><i class="ut2-icon-linkedin"></i></a> </div> </div>";} 0 1524 blocks/wrappers/sidebox_important.tpl 2 A safe_smarty_block a:8:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"178";s:22:"skeleton_height_tablet";s:3:"188";s:22:"skeleton_height_mobile";s:3:"192";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Social links
805 206 a:1:{s:4:"menu";s:1:"5";} 0 990 hidden-phone 2 A menu a:21:{s:8:"template";s:48:"blocks/menu/abt__ut2_dropdown_horizontal_mwi.tpl";s:19:"abt_menu_long_names";s:1:"N";s:29:"abt_menu_long_names_max_width";s:3:"100";s:40:"abt__menu_add_horizontal_scroll_sections";s:1:"Y";s:21:"abt__ut2_filling_type";s:14:"column_filling";s:22:"abt__ut2_columns_count";s:1:"5";s:30:"dropdown_second_level_elements";s:2:"30";s:29:"dropdown_third_level_elements";s:2:"30";s:40:"abt__no_hidden_elements_third_level_view";s:1:"5";s:31:"abt__ut2_view_more_btn_behavior";s:10:"view_items";s:19:"abt_menu_icon_items";s:1:"Y";s:22:"abt__menu_compact_view";s:1:"N";s:24:"abt__ut2_menu_min_height";s:3:"450";s:22:"abt__ut2_demo_block_id";s:9:"main_menu";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:73:"https://v8.kcoffee.vn/sn-phm-ca-phe/ca-phe-rang-xay-vn-vn/?action=preview";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";s:27:"open_on_sticky_panel_button";s:1:"N";} 0 1 en Main menu
799 70 a:1:{s:4:"text";s:0:"";} 0 980 top-languages 3 A languages a:4:{s:8:"template";s:20:"blocks/languages.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:6:"format";s:22:"ab__name_without_icons";s:14:"dropdown_limit";s:1:"0";} 0 1 en Languages
814 86 0 997 text-center 3 A template a:8:{s:8:"template";s:37:"blocks/static_templates/copyright.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";s:12:"abt__ut2_url";s:0:"";s:23:"abt__ut2_url_appearance";s:1:"L";s:23:"abt__ut2_url_new_window";s:1:"N";} 0 1 en Copyright
854 127 a:1:{s:5:"items";a:4:{s:7:"filling";s:26:"ab__dotd_sorted_promotions";s:7:"sort_by";s:7:"to_date";s:10:"sort_order";s:4:"desc";s:5:"limit";s:2:"10";}} 0 1038 scroller 3 A ab__promotions a:10:{s:8:"template";s:66:"addons/ab__deal_of_the_day/blocks/promotions/ab__dotd_scroller.tpl";s:24:"not_scroll_automatically";s:1:"Y";s:5:"speed";s:3:"400";s:11:"pause_delay";s:1:"3";s:13:"item_quantity";s:1:"5";s:18:"outside_navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"367";s:22:"skeleton_height_tablet";s:3:"345";s:22:"skeleton_height_mobile";s:3:"411";} 0 1 en Promotions