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 (
    3407, 3408, 3409, 3414, 3410, 3411, 3412, 
    3413, 3417, 3422, 3418, 3419, 3420, 
    3421, 3423, 3424, 3425, 3426, 3427, 
    3432, 3435, 3441, 3445, 3448, 3451, 
    3452, 3458, 3461, 3464, 3465, 3466, 
    3467, 3428, 3429, 3430, 3431, 3433, 
    3434, 3436, 3437, 3438, 3439, 3440, 
    3442, 3443, 3444, 3446, 3447, 3449, 
    3450, 3453, 3457, 3454, 3455, 3456, 
    3459, 3460, 3462, 3463, 3468, 3469
  ) 
  AND cscart_bm_blocks_descriptions.lang_code = 'en' 
ORDER BY 
  cscart_bm_snapping.order, 
  cscart_bm_snapping.block_id

Query time 0.00148

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.718846277,
    "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"],
              "loops": 1,
              "rows": 81,
              "cost": 0.14152008,
              "filtered": 100,
              "index_condition": "cscart_bm_snapping.grid_id in (3407,3408,3409,3414,3410,3411,3412,3413,3417,3422,3418,3419,3420,3421,3423,3424,3425,3426,3427,3432,3435,3441,3445,3448,3451,3452,3458,3461,3464,3465,3466,3467,3428,3429,3430,3431,3433,3434,3436,3437,3438,3439,3440,3442,3443,3444,3446,3447,3449,3450,3453,3457,3454,3455,3456,3459,3460,3462,3463,3468,3469)"
            }
          }
        }
      },
      {
        "table": {
          "table_name": "cscart_bm_blocks",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "4",
          "used_key_parts": ["block_id"],
          "ref": ["u508912950_dev_2025.cscart_bm_snapping.block_id"],
          "loops": 81,
          "rows": 1,
          "cost": 0.08228004,
          "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": ["u508912950_dev_2025.cscart_bm_snapping.block_id", "const"],
          "loops": 81,
          "rows": 1,
          "cost": 0.07490724,
          "filtered": 100,
          "attached_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": ["u508912950_dev_2025.cscart_bm_snapping.snapping_id"],
          "loops": 81,
          "rows": 1,
          "cost": 0.07894937,
          "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": [
            "u508912950_dev_2025.cscart_bm_snapping.block_id",
            "const",
            "u508912950_dev_2025.cscart_bm_blocks_descriptions.lang_code",
            "const"
          ],
          "loops": 81,
          "rows": 1,
          "cost": 0.14448537,
          "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": ["u508912950_dev_2025.cscart_bm_snapping.block_id"],
          "loops": 81,
          "rows": 1,
          "cost": 0.14448537,
          "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 ab__ab_hide_block lang_code name
3407 141 0 3880 0 A geo_maps_customer_location a:1:{s:8:"template";s:44:"addons/geo_maps/blocks/customer_location.tpl";} 0 1 N en Customer location
3412 513 0 3889 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 N en AB: Buttons Compare and Wishlist
3418 516 0 3896 blocks/wrappers/footer_general.tpl 0 A template a:1:{s:8:"template";s:44:"blocks/static_templates/my_account_links.tpl";} 0 1 N en My account
3421 518 a:1:{s:7:"content";s:554:"<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> </ul>";} 0 3899 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 0 A safe_smarty_block a:5:{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:"";} 0 1 N en Contact us
3426 520 a:6:{s:4:"menu";s:2:"13";s:22:"ab__fn_show_common_btn";s:1:"N";s:22:"ab__fn_common_btn_text";s:0:"";s:27:"ab__fn_show_common_btn_link";s:0:"";s:23:"ab__fn_common_btn_class";s:0:"";s:22:"ab__fn_common_btn_type";s:14:"ab__fn_cbt_btn";} 0 3903 blocks/wrappers/abt__ut2__mainbox_general.tpl 0 D ab__fast_navigation a:12:{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:15:"ab__fn_scroller";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:"";s:23:"skeleton_height_desktop";s:0:"";s:22:"skeleton_height_tablet";s:0:"";s:22:"skeleton_height_mobile";s:0:"";} 0 1 N en AB: Fast Navigation Catalog
3408 668 a:1:{s:4:"menu";s:2:"19";} 0 3881 top-quick-links hidden-phone 0 A menu a:8:{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:27:"open_on_sticky_panel_button";s:1:"N";s:40:"abt__no_hidden_elements_third_level_view";i:5;} 0 1 N en Top links
3425 671 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:3:"320";}} 0 3902 homepage-banners 0 A banners a:14:{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:1:"3";s:10:"navigation";s:1:"D";s:30:"disable_first_banner_lazy_load";s:1:"Y";s:11:"pov_desktop";s:1:"1";s:10:"pov_tablet";s:1:"1";s:10:"pov_mobile";s:1:"1";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:0:"";} 0 1 N en Main banners
3428 672 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:3:"278";}} 0 3904 0 A banners a:8:{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:"150px";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:"";} 0 1 N en Category 1
3429 674 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:3:"276";}} 0 3906 0 A banners a:8:{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:"150px";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:"";} 0 1 N en Category 2
3431 678 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:3:"277";}} 0 3910 0 A banners a:8:{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:"150px";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:"";} 0 1 N en Category 5
3431 679 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:3:"271";}} 0 3911 0 A banners a:8:{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:"150px";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:"";} 0 1 N en Category 4
3433 680 0 3912 0 A template a:9:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__title_block.tpl";s:20:"abt__ut_center_title";s:1:"N";s:29:"abt__ut_title_line_decoration";s:1:"N";s:22:"abt__ut_big_size_title";s:6:"normal";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:"";} 0 1 N en Top Picks for You
3434 681 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:70:"175,240,125,120,225,224,169,246,223,226,163,161,215,248,94,173,190,189";}} 0 3913 0 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:"430";s:22:"skeleton_height_tablet";s:3:"415";s:22:"skeleton_height_mobile";s:3:"390";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en Most Popular
3439 687 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:167:"16868,17135,17281,17297,17299,16485,16932,16946,17212,17438,16850,16854,17189,16996,18373,17017,16791,17028,16523,17031,17074,17217,14659,16389,14705,15167,15168,15732";}} 0 3919 ut2-gray-box 0 A products a:18:{s:8:"template";s:37:"blocks/products/products_scroller.tpl";s:10:"show_price";s:1:"Y";s:17:"enable_quick_view";s:1:"Y";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:1:"1";s:24:"item_quantity_sm_desktop";s:1:"1";s:20:"item_quantity_tablet";s:1:"1";s:20:"item_quantity_mobile";s:1:"1";s:15:"thumbnail_width";s:3:"265";s:18:"outside_navigation";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:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en Summer Products - center
3440 689 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:35:"13502,13503,15742,15743,15744,16419";}} 0 3921 ut2-gray-box 0 A products a:18:{s:8:"template";s:37:"blocks/products/products_scroller.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:5:"speed";s:3:"300";s:11:"pause_delay";s:1:"2";s:13:"item_quantity";s:1:"5";s:24:"item_quantity_sm_desktop";s:1:"2";s:20:"item_quantity_tablet";s:1:"2";s:20:"item_quantity_mobile";s:1:"2";s:15:"thumbnail_width";s:3:"180";s:18:"outside_navigation";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:"256";s:22:"skeleton_height_mobile";s:3:"200";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en Summer Products - right
3442 691 0 3923 0 A template a:9:{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:"";} 0 1 N en <mark>In demand</mark> this week
3444 693 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:3:"274";}} 0 3925 0 A banners a:8:{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:"200px";s:13:"height_mobile";s:5:"150px";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";} 0 1 N en Seller shop 14
3446 694 0 3926 0 A template a:9:{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:3:"big";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:"";} 0 1 N en <mark>Big Discounts</mark> Ahead
3449 696 0 3928 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 N en The <mark>best cameras</mark> today
3450 697 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:23:"190,169,175,246,173,163";}} 0 3929 0 A products a:16:{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:"6";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:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en The best cameras today
3454 699 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:3:"281";}} 0 3931 0 A banners a:14:{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:"200px";s:13:"height_mobile";s:5:"200px";s:5:"delay";s:1:"3";s:10:"navigation";s:1:"N";s:30:"disable_first_banner_lazy_load";s:1:"Y";s:11:"pov_desktop";s:1:"1";s:10:"pov_tablet";s:1:"1";s:10:"pov_mobile";s:1:"1";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 N en Summer ready- Swinwear
3456 702 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:3:"273";}} 0 3934 0 A banners a:8:{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:"150px";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 N en Category 9
3457 704 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:"39,41";}} 0 3936 0 A banners a:12:{s:8:"template";s:57:"addons/abt__unitheme2/blocks/abt__ut2_banner_multiple.tpl";s:6:"margin";s:9:"0 0 5px 0";s:6:"height";s:5:"500px";s:13:"height_mobile";s:5:"500px";s:13:"minimal_width";s:5:"360px";s:19:"multiple_mode_items";s:1:"2";s:10:"navigation";s:1:"L";s:5:"delay";s:1:"6";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";} 0 1 N en AB: Banner 17
3459 706 0 3938 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 N en The best <mark>deals of the day</mark>
3464 710 0 3942 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:"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 N en Stay updated with the <mark>latest news</mark>
3465 712 a:1:{s:7:"content";s:614:"<p>A site that sells products online. Allows users to create a purchase order, choose a payment method and deliver the order on the Internet. Having chosen the necessary goods or services, the user usually has the opportunity to select a method of payment and delivery on the site right away.</p> <p>The main difference between the Internet store and the traditional one is in the type of the trading platform. A typical store needs a trading hall, shop windows, price tags, as well as sellers, cashiers and experienced consultants, the online store has the entire infrastructure implemented programmatically.</p>";} 0 3944 blocks/wrappers/abt__ut2__mainbox_general.tpl 0 A html_block a:6:{s:8:"template";s:21:"blocks/html_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:16:"enable_ajax_load";s:1:"Y";} 0 1 N en About company
3468 714 0 3947 0 A template a:2:{s:8:"template";s:46:"blocks/static_templates/subscribe_advanced.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";} 0 1 N en Subscribe
3469 715 a:1:{s:7:"content";s:609:"<div class="ut2-social-link-block"><div class="ty-mainbox-title">{("Connect with us")}</div> <div class="ty-uppercase ty-social-link__title">Join the local community<br>Be the first to know about all our promotions and offers!</div> <div class="ut2-social-links"> <a target="_blank" href="https://www.facebook.com/surfmt.malta"><i class="ut2-icon-facebook"></i></a> <a target="_blank" href="https://www.instagram.com/surf.mt/"><i class="ut2-icon-instagram"></i></a> <a target="_blank" href="https://www.linkedin.com/company/surfmt/"><i class="ut2-icon-linkedin"></i></a> </div> </div>";} 0 3948 0 A safe_smarty_block a:5:{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";} 0 1 N en AB: Social links
3410 741 a:1:{s:13:"settings_link";s:0:"";} 0 3884 0 D abt__ut2_fly_menu a:7:{s:8:"template";s:50:"addons/abt__unitheme2/blocks/abt__ut2_fly_menu.tpl";s:19:"abt_menu_icon_items";s:1:"Y";s:36:"elements_per_column_third_level_view";s:1:"5";s:19:"abt__ut2_show_title";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:27:"open_on_sticky_panel_button";s:1:"Y";s:40:"abt__no_hidden_elements_third_level_view";s:2:"10";} 0 1 N en Menu
3413 743 0 3892 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 N en Search
3410 509 a:1:{s:4:"menu";i:22;} 0 3885 blocks/wrappers/onclick_dropdown.tpl top-menu-grid-vetrtical 1 D menu a:13:{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:22:"abt__menu_compact_view";s:1:"N";s:19:"abt_menu_icon_items";s:1:"Y";s:36:"elements_per_column_third_level_view";s:2:"30";s:30:"dropdown_second_level_elements";s:2:"30";s:29:"dropdown_third_level_elements";s:2:"30";s:18:"abt_menu_ajax_load";s:1:"N";s:31:"abt__ut2_view_more_btn_behavior";s:10:"view_items";s:24:"abt__ut2_menu_min_height";s:3:"550";s:22:"abt__ut2_demo_block_id";s:9:"main_menu";s:40:"abt__no_hidden_elements_third_level_view";s:1:"5";} 0 1 N en Categories
3412 514 0 3890 ut2-top-my-account hidden-phone 1 A my_account a:5:{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:"";} 0 1 N en Account
3419 517 a:1:{s:7:"content";s:325:"<ul id="Company_Profile_links"> <li class="ty-footer-menu__item"><a href="{"nt_page.about"|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="https://surf.mt/become-a-seller">Become a seller</a></li> </ul> ";} 0 3897 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 1 A safe_smarty_block a:5:{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:"";} 0 1 N en Company profile
3408 669 0 3882 top-currencies 1 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 N en Currencies
3428 673 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:3:"274";}} 0 3905 1 A banners a:8:{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:"150px";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:"";} 0 1 N en Category 6
3429 675 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:3:"275";}} 0 3907 1 A banners a:8:{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:"150px";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:"";} 0 1 N en Category 7
3434 682 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:70:"161,163,226,223,246,169,224,225,120,125,240,175,215,248,94,173,190,189";}} 0 3914 1 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:18:"onclick_and_scroll";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:"430";s:22:"skeleton_height_tablet";s:3:"415";s:22:"skeleton_height_mobile";s:3:"390";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en Bestsellers
3438 685 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:3:"272";}} 0 3917 1 A banners a:8:{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:"150px";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 N en Category 10
3439 688 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:23:"13879,13876,13946,13950";}} 0 3920 ut2-border-box 1 D products a:9:{s:8:"template";s:40:"blocks/products/products_small_items.tpl";s:11:"item_number";s:1:"N";s:15:"thumbnail_width";s:2:"80";s:16:"thumbnail_height";s:3:"100";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"292";s:22:"skeleton_height_tablet";s:3:"311";s:22:"skeleton_height_mobile";s:3:"340";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en 01 - Seasonal [products]
3440 690 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:3:"304";}} 0 3922 1 A banners a:14:{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:"300px";s:13:"height_mobile";s:5:"200px";s:5:"delay";s:1:"6";s:10:"navigation";s:1:"D";s:30:"disable_first_banner_lazy_load";s:1:"N";s:11:"pov_desktop";s:1:"1";s:10:"pov_tablet";s:1:"1";s:10:"pov_mobile";s:1:"1";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";} 0 1 N en Surf Mini-Banners
3454 700 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:3:"273";}} 0 3932 1 A banners a:8:{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:"150px";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 N en Category 12
3465 713 0 3945 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 N en Our brands
3411 743 0 3887 ut2-search 1 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 N en Search
3412 8 0 3891 ut2-top-cart-content 2 A cart_content a:8:{s:8:"template";s:23:"blocks/cart_content.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: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 N en Cart content
3423 45 0 3900 2 A template a:1:{s:8:"template";s:37:"blocks/static_templates/copyright.tpl";} 0 1 N en Copyright
3424 103 0 3901 2 A template a:1:{s:8:"template";s:41:"blocks/static_templates/payment_icons.tpl";} 0 1 N en Payment icons
3420 153 a:1:{s:7:"content";s:761:"<ul id="consumer_Policy_links"> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=37"|fn_url}" rel="nofollow">Terms of use</a></li> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=4"|fn_url}" rel="nofollow">Delivery Policy</a></li> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=80"|fn_url}" rel="nofollow">Return Policy</a></li> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=3"|fn_url}" rel="nofollow">Privacy policy</a></li> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=35"|fn_url}" rel="nofollow">Cookie policy</a></li> <li class="ty-footer-menu__item"><a href="{"pages.view?page_id=79"|fn_url}" rel="nofollow">Sellers terms and conditions</a></li> </ul>";} 0 3898 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 2 A safe_smarty_block a:5:{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:"";} 0 1 N en User policies
3466 245 0 3946 2 A main 0 1 N en Main content
3411 512 0 3888 2 A template a:9:{s:8:"template";s:46:"blocks/static_templates/abt__ut2__contacts.tpl";s:49:"abt__ut2__block_contacts_show_call_request_button";s:1:"N";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:"";} 0 1 N en Contacts
3408 670 a:1:{s:4:"text";s:0:"";} 0 3883 top-languages 2 A languages a:7:{s:8:"template";s:20:"blocks/languages.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:6:"format";s:4:"name";s:14:"dropdown_limit";s:1:"0";} 0 1 N en Languages
3430 676 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:3:"272";}} 0 3908 2 A banners a:8:{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:"150px";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:"";} 0 1 N en Category 3
3434 683 a:1:{s:5:"items";a:3:{s:7:"filling";s:7:"on_sale";s:5:"limit";s:2:"18";s:3:"cid";s:0:"";}} 0 3915 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:18:"onclick_and_scroll";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:"430";s:22:"skeleton_height_tablet";s:3:"415";s:22:"skeleton_height_mobile";s:3:"390";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en On Sale
3436 684 0 3916 2 A template a:9:{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:3:"big";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:"";} 0 1 N en Get <mark>Summer-Ready</mark>
3438 686 a:1:{s:5:"items";a:1:{s:7:"filling";s:8:"manually";}} 0 3918 ut2-color-box 2 A products a:18:{s:8:"template";s:37:"blocks/products/products_scroller.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:5:"speed";s:3:"300";s:11:"pause_delay";s:1:"2";s:13:"item_quantity";s:1:"5";s:24:"item_quantity_sm_desktop";s:1:"2";s:20:"item_quantity_tablet";s:1:"2";s:20:"item_quantity_mobile";s:1:"2";s:15:"thumbnail_width";s:3:"180";s:18:"outside_navigation";s:1:"N";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"302";s:22:"skeleton_height_tablet";s:3:"309";s:22:"skeleton_height_mobile";s:3:"292";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en Summer Products - left
3443 692 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:3:"230";}} 0 3924 2 A products a:17:{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:"6";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:16:"enable_ajax_load";s:1:"Y";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en In demand this week
3447 695 a:1:{s:5:"items";a:1:{s:7:"filling";s:8:"manually";}} 0 3927 2 A products a:16:{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:"Y";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:"300";s:5:"delay";s:1:"3";s:13:"item_quantity";s:1:"6";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:23:"hide_add_to_cart_button";s:1:"N";} 0 1 N en Below 40%
3451 698 0 3930 2 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:"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 N en Discover some of <mark>our promotions</mark>
3455 701 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:"41";}} 0 3933 2 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:"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 N en AB: Banner 11
3456 703 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:3:"276";}} 0 3935 2 A banners a:8:{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:"200px";s:13:"height_mobile";s:5:"150px";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 N en Seller shop 13
3460 707 a:1:{s:9:"promotion";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"30";}} 0 3939 2 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 N en AB: Deal of the day
3462 708 0 3940 2 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:"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 N en Explore current promotions
3464 711 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 3943 2 A blog a:5:{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";} 0 1 N en Blogs section
3414 744 a:1:{s:4:"menu";s:2:"18";} 0 3893 2 A menu a:19:{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:"110";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:16:"enable_ajax_load";s:1:"N";s:27:"open_on_sticky_panel_button";s:1:"N";} 0 1 N en Main menu
3430 677 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:3:"273";}} 0 3909 3 A banners a:8:{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:"150px";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:"";} 0 1 N en Category 8
3463 709 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 3941 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:"8";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 N en Promotions
3410 511 0 3886 top-logo 5 A template a:6:{s:8:"template";s:32:"blocks/static_templates/logo.tpl";s:11:"enable_link";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:"";} 0 1 N en Logo