SELECT 
  ushop_bm_snapping.grid_id as grid_id, 
  ushop_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, 
  ushop_bm_block_statuses.object_ids as object_ids, 
  ushop_bm_snapping.*, 
  ushop_bm_blocks.*, 
  ushop_bm_blocks_descriptions.* 
FROM 
  ushop_bm_snapping 
  LEFT JOIN ushop_bm_blocks ON ushop_bm_blocks.block_id = ushop_bm_snapping.block_id 
  LEFT JOIN ushop_bm_block_statuses ON ushop_bm_snapping.snapping_id = ushop_bm_block_statuses.snapping_id 
  AND ushop_bm_block_statuses.object_type LIKE '' 
  LEFT JOIN ushop_bm_blocks_descriptions ON ushop_bm_blocks.block_id = ushop_bm_blocks_descriptions.block_id 
  LEFT JOIN ushop_bm_blocks_content AS default_content ON ushop_bm_blocks.block_id = default_content.block_id 
  AND ushop_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 ushop_bm_blocks_content AS dynamic_object_content ON ushop_bm_blocks.block_id = dynamic_object_content.block_id 
  AND ushop_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 
  ushop_bm_snapping.grid_id IN (
    1958, 1959, 1960, 4086, 1961, 1962, 1963, 
    3457, 1966, 1964, 1965, 4085, 1969, 
    1974, 1970, 1971, 1975, 1972, 1973, 
    2273, 1985, 1988, 1992, 1989, 1990, 
    1991, 1995, 1996, 1998, 1999, 2000, 
    2001, 2002, 2004, 2005, 2006, 2009, 
    2010, 2012, 2013, 2016, 2017, 2019, 
    2020, 2023, 2028, 2029, 2030, 2031, 
    2037, 2038, 2272, 2262, 1986, 1987, 
    1993, 1994, 1997, 2003, 2007, 2008, 
    2011, 2014, 2015, 2018, 2021, 2022, 
    2024, 2025, 2026, 2027, 2032, 2033, 
    2034, 2035, 2036, 4026
  ) 
  AND ushop_bm_blocks_descriptions.lang_code = 'es' 
ORDER BY 
  ushop_bm_snapping.order, 
  ushop_bm_snapping.block_id

Query time 0.00397

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "7282.56"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "5112.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "ushop_bm_snapping",
            "access_type": "range",
            "possible_keys": [
              "grid_id"
            ],
            "key": "grid_id",
            "used_key_parts": [
              "grid_id"
            ],
            "key_length": "4",
            "rows_examined_per_scan": 142,
            "rows_produced_per_join": 142,
            "filtered": "100.00",
            "index_condition": "(`marketplace`.`ushop_bm_snapping`.`grid_id` in (1958,1959,1960,4086,1961,1962,1963,3457,1966,1964,1965,4085,1969,1974,1970,1971,1975,1972,1973,2273,1985,1988,1992,1989,1990,1991,1995,1996,1998,1999,2000,2001,2002,2004,2005,2006,2009,2010,2012,2013,2016,2017,2019,2020,2023,2028,2029,2030,2031,2037,2038,2272,2262,1986,1987,1993,1994,1997,2003,2007,2008,2011,2014,2015,2018,2021,2022,2024,2025,2026,2027,2032,2033,2034,2035,2036,4026))",
            "cost_info": {
              "read_cost": "68.96",
              "eval_cost": "14.20",
              "prefix_cost": "83.16",
              "data_read_per_join": "109K"
            },
            "used_columns": [
              "snapping_id",
              "block_id",
              "grid_id",
              "wrapper",
              "user_class",
              "order",
              "status"
            ]
          }
        },
        {
          "table": {
            "table_name": "ushop_bm_block_statuses",
            "access_type": "ref",
            "possible_keys": [
              "snapping_id"
            ],
            "key": "snapping_id",
            "used_key_parts": [
              "snapping_id"
            ],
            "key_length": "4",
            "ref": [
              "marketplace.ushop_bm_snapping.snapping_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 142,
            "filtered": "100.00",
            "index_condition": "<if>(is_not_null_compl(ushop_bm_block_statuses), ((`marketplace`.`ushop_bm_snapping`.`snapping_id` = `marketplace`.`ushop_bm_block_statuses`.`snapping_id`) and (`marketplace`.`ushop_bm_block_statuses`.`object_type` like '')), true)",
            "cost_info": {
              "read_cost": "35.50",
              "eval_cost": "14.20",
              "prefix_cost": "132.86",
              "data_read_per_join": "16K"
            },
            "used_columns": [
              "snapping_id",
              "object_ids",
              "object_type"
            ]
          }
        },
        {
          "table": {
            "table_name": "ushop_bm_blocks",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id"
            ],
            "key_length": "4",
            "ref": [
              "marketplace.ushop_bm_snapping.block_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 142,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "35.50",
              "eval_cost": "14.20",
              "prefix_cost": "182.56",
              "data_read_per_join": "31K"
            },
            "used_columns": [
              "block_id",
              "type",
              "properties",
              "company_id",
              "storefront_id"
            ]
          }
        },
        {
          "table": {
            "table_name": "ushop_bm_blocks_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "block_id",
              "lang_code"
            ],
            "key_length": "10",
            "ref": [
              "marketplace.ushop_bm_snapping.block_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 142,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "35.50",
              "eval_cost": "14.20",
              "prefix_cost": "232.26",
              "data_read_per_join": "28K"
            },
            "used_columns": [
              "block_id",
              "lang_code",
              "name"
            ]
          }
        },
        {
          "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": [
              "marketplace.ushop_bm_snapping.block_id",
              "const",
              "marketplace.ushop_bm_blocks_descriptions.lang_code",
              "const"
            ],
            "rows_examined_per_scan": 3,
            "rows_produced_per_join": 426,
            "filtered": "100.00",
            "index_condition": "<if>(is_not_null_compl(default_content), (`marketplace`.`default_content`.`object_type` like ''), true)",
            "cost_info": {
              "read_cost": "106.50",
              "eval_cost": "42.60",
              "prefix_cost": "381.36",
              "data_read_per_join": "93K"
            },
            "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": [
              "marketplace.ushop_bm_snapping.block_id"
            ],
            "rows_examined_per_scan": 12,
            "rows_produced_per_join": 5112,
            "filtered": "100.00",
            "index_condition": "<if>(is_not_null_compl(dynamic_object_content), ((`marketplace`.`dynamic_object_content`.`object_id` = 0) and (`marketplace`.`dynamic_object_content`.`lang_code` = `marketplace`.`ushop_bm_blocks_descriptions`.`lang_code`) and (`marketplace`.`dynamic_object_content`.`object_type` like '')), true)",
            "cost_info": {
              "read_cost": "1278.00",
              "eval_cost": "511.20",
              "prefix_cost": "2170.56",
              "data_read_per_join": "1M"
            },
            "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
1961 68 0 2324 top-logo 0 A template a:2:{s:8:"template";s:32:"blocks/static_templates/logo.tpl";s:17:"abt__ut2_fly_menu";s:8:"top_logo";} 0 1 es Logo
1989 109 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:"31,40";}} 0 2361 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 es AB: Banner 9
1991 112 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 2364 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: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 es AB: Banner 10
1992 114 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 2366 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 es AB: Banner 17
1960 167 a:1:{s:13:"settings_link";s:0:"";} 0 2323 0 A abt__ut2_fly_menu a:6:{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:"Y";s:22:"abt__ut2_demo_block_id";s:0:"";s:27:"open_on_sticky_panel_button";s:1:"Y";} 0 1 es Menu
1958 185 0 2319 0 A geo_maps_customer_location a:5:{s:8:"template";s:44:"addons/geo_maps/blocks/customer_location.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"110";s:22:"skeleton_height_tablet";s:3:"110";s:22:"skeleton_height_mobile";s:1:"0";} 0 1 es Ubicación
1964 185 0 2330 0 A geo_maps_customer_location a:5:{s:8:"template";s:44:"addons/geo_maps/blocks/customer_location.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"110";s:22:"skeleton_height_tablet";s:3:"110";s:22:"skeleton_height_mobile";s:1:"0";} 0 1 es Ubicación
1966 185 0 2333 hidden-tablet hidden-desktop 0 A geo_maps_customer_location a:5:{s:8:"template";s:44:"addons/geo_maps/blocks/customer_location.tpl";s:22:"abt__ut2_demo_block_id";s:0:"";s:23:"skeleton_height_desktop";s:3:"110";s:22:"skeleton_height_tablet";s:3:"110";s:22:"skeleton_height_mobile";s:1:"0";} 0 1 es Ubicación
4086 186 a:1:{s:4:"menu";s:1:"1";} 0 5243 0 A menu a:18:{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:"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:"N";s:22:"abt__menu_compact_view";s:1:"N";s:24:"abt__ut2_menu_min_height";s:3:"490";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";} 0 1 es Menú principal
1966 188 0 4234 0 A template a:1:{s:8:"template";s:34:"blocks/static_templates/search.tpl";} 0 1 es Buscar
3457 188 0 5239 0 D template a:1:{s:8:"template";s:34:"blocks/static_templates/search.tpl";} 0 1 es Buscar
1965 194 a:1:{s:7:"content";s:470:"<style> @media (max-width: 767.98px){ .u-mobile-separator{ height: 2px; /* el alto del separador */ margin-top: 2px; /* separación solo arriba */ margin-bottom: 0 !important; /* sin separación abajo */ border-top: 1px solid rgba(0,0,0,.08); background: transparent; } } @media (min-width: 768px){ .u-mobile-separator{ display:none !important; } } </style> <div class="u-mobile-separator" aria-hidden="true"></div>";} 0 2332 hidden-tablet hidden-desktop 0 A html_block a:5:{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:"";} 0 1 es Separador 50px
2025 195 0 2397 0 A main 0 1 es Contenido principal resultados de busqueda
1970 197 a:1:{s:7:"content";s:1977:"<ul class="contacto-ushop" itemscope itemtype="https://schema.org/Organization"> <!-- Horario 24h oculto para SEO --> <meta itemprop="openingHours" content="Mo-Su 00:00-23:59"> <li> <!-- Icono dirección --> <svg class="ico" viewBox="0 0 24 24" aria-hidden="true"><path d="M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7zm0 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"/></svg> <a href="https://maps.app.goo.gl/hk3VZqqeTJmtff1K7" target="_blank" rel="noopener" title="Ver ubicación en Google Maps"> <span itemprop="address" itemscope itemtype="https://schema.org/PostalAddress"> <span itemprop="streetAddress">Diego Young 3018</span>, <span itemprop="addressLocality">Young</span>, <span itemprop="addressRegion">Río Negro</span>, <span itemprop="addressCountry">Uruguay</span> </span> </a> </li> <li> <!-- Icono email --> <svg class="ico" viewBox="0 0 24 24" aria-hidden="true"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z"/></svg> <a href="mailto:info@ushop.shopping" itemprop="email" title="Enviar email">info@ushop.shopping</a> </li> <li> <!-- Icono WhatsApp --> <svg class="ico" viewBox="0 0 24 24" aria-hidden="true"><path d="M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1.1-.22c1.2.48 2.6.74 4 .74a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C11.4 21 3 12.6 3 2a1 1 0 0 1 1-1h3.3a1 1 0 0 1 1 1c0 1.4.26 2.8.74 4a1 1 0 0 1-.22 1.1L6.6 10.8z"/></svg> <a href="https://wa.me/59892873178" target="_blank" rel="noopener" itemprop="telephone" title="Enviar WhatsApp">+598 92 873 178</a> </li> </ul> <style> .contacto-ushop { list-style: none; padding: 0; margin: 0; } .contacto-ushop li { display: flex; align-items: center; gap: .5rem; margin: .35rem 0; } .contacto-ushop .ico { width: 18px; height: 18px; flex: 0 0 18px; fill: currentColor; opacity: .9; } .contacto-ushop a { text-decoration: none; } </style> ";} 0 2337 blocks/wrappers/footer_general.tpl 0 A safe_smarty_block a:1:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";} 0 1 es Contacto
1973 200 a:1:{s:7:"content";s:966:"<nav id="menu-columna-3" class="menu-columna" aria-label="Legales y políticas"> <ul class="lista-menu-columna"> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/terminos-y-condiciones">Términos y condiciones UShop</a> </li> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/terminos-y-condiciones-marketplace">Términos y condiciones MarketPlace</a> </li> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/politica-de-privacidad">Política de privacidad</a> </li> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/politica-de-devolucion">Política de devolución</a> </li> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/politica-de-envio">Política de envío</a> </li> </ul> </nav>";} 0 2340 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 0 A safe_smarty_block a:1:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";} 0 1 es Más información
1985 203 a:1:{s:7:"content";s:275:"<header class="header clipped"> <h1>UShop Shopping Digital</h1> <p>Shopping Digital, MarketPlace, productos y tiendas online con grandes ofertas. Comprá o vendé fácil, cómodo y seguro. Explora UShop ahora.</p> <h2>Te damos la bienvenida a UShop</h2> </header>";} 0 2357 h1-oculto 0 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 es Sugeridos por la IA para ti
1986 205 0 2359 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: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:"";} 0 1 es Últimos <mark>vistos</mark>
1993 207 0 2368 0 D 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: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 es X
2004 208 0 2381 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 es <mark>Inspirado en lo último que viste</mark>
2001 215 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:11:"248,161,163";}} 0 2377 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 es 03 - Estacional [products]
2002 216 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:7:"223,224";}} 0 2379 ut2-gray-box 0 A 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: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:"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 es 04 - Estacional [products]
2006 218 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:"43,44,45,46";}} 0 2383 0 A banners a:12:{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:"450px";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:"4";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 es AB: Banner 15
2009 219 0 2384 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:"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 es <mark>Popular</mark> este mes
2012 221 0 2386 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:"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 es Las <mark>mejores cámaras</mark> de la actualidad
2013 222 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 2387 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 es Las mejores cámaras de la actualidad
2016 224 0 2389 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 es Las mejores <mark>ofertas del día</mark>
2021 227 0 2393 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 es Mantente actualizado con las<mark> últimas noticias</mark>
2024 229 a:1:{s:7:"content";s:0:"";} 0 2395 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 es Sobre UShop
2026 231 a:3:{s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"items";a:1:{s:7:"filling";s:8:"manually";}} 0 2398 0 D banners a:5:{s:8:"template";s:34:"addons/banners/blocks/original.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 es 12
2028 233 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:"56";}} 0 2400 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:"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:"";} 0 1 es Autos, Motos y Otros
2029 241 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:"65";}} 0 2408 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Inmuebles
2030 249 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:"73";}} 0 2416 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Arte, Librería y Mercería
2031 257 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:"81";}} 0 2424 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Juegos y Juguetes
2033 265 0 2432 blocks/wrappers/mainbox_simple.tpl 0 D 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: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 es Otras categorías
2037 268 0 2435 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 es Suscribirse
2262 338 a:1:{s:5:"items";a:3:{s:7:"filling";s:26:"ec_live_commerce.live_only";s:5:"limit";s:1:"8";s:16:"ec_followed_only";s:1:"Y";}} 0 2702 0 D ec_live_commerce_main_content a:7:{s:8:"template";s:43:"addons/ec_live_commerce/blocks/scroller.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:1:"5";s:18:"outside_navigation";s:1:"Y";} 0 1 es live 2
2272 347 a:1:{s:7:"content";s:2921:"<div class="wave-container"> <!-- Icono animado --> <div class="streaming-icon" aria-hidden="true">▶</div> <!-- Texto STREAMING (en una sola línea) --> <h2 class="wave-text" aria-label="STREAMING">STREAMING</h2> </div> <style> .wave-container { display: flex; justify-content: center; align-items: center; flex-wrap: nowrap; /* siempre en una sola línea */ gap: clamp(8px, 4vw, 20px); /* separación fluida */ padding: clamp(6px, 2vw, 16px); min-height: 15vh; width: 100%; margin: 0; background: #101010; font-family: Arial, sans-serif; border-radius: 12px; overflow: hidden; /* evita desbordes en pantallas muy chicas */ } /* Icono de streaming */ .streaming-icon { font-size: clamp(16px, 12vw, 48px); /* escala bien desde 250px hasta pantallas grandes */ color: #ffffff; animation: pulse 1.5s ease-in-out infinite; /* loop infinito */ line-height: 1; } @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.2); opacity: 1; } } .wave-text { white-space: nowrap; /* obliga una sola línea */ line-height: 1; margin: 0; } .wave-text span { display: inline-block; font-size: clamp(18px, 14vw, 64px); /* fluido, cabe incluso en 250px */ color: #ffffff; animation: wave 2s ease-in-out infinite; } /* Delays sincronizados para 9 letras de "STREAMING" */ .wave-text span:nth-child(1) { animation-delay: 0s; } .wave-text span:nth-child(2) { animation-delay: 0.2s; } .wave-text span:nth-child(3) { animation-delay: 0.4s; } .wave-text span:nth-child(4) { animation-delay: 0.6s; } .wave-text span:nth-child(5) { animation-delay: 0.8s; } .wave-text span:nth-child(6) { animation-delay: 1.0s; } .wave-text span:nth-child(7) { animation-delay: 1.2s; } .wave-text span:nth-child(8) { animation-delay: 1.4s; } .wave-text span:nth-child(9) { animation-delay: 1.6s; } @keyframes wave { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } /* se mantiene tu efecto */ } /* Opcional: respeta usuarios con reducción de movimiento */ @media (prefers-reduced-motion: reduce) { .streaming-icon, .wave-text span { animation: none; } } </style> <script> // Envuelve automáticamente "STREAMING" en <span> por letra. // No cambia el efecto; solo asegura que funcione la animación por letra. (function () { const el = document.querySelector('.wave-text'); if (!el) return; // Si ya tiene spans, no hace nada if ([...el.childNodes].some(n => n.nodeType === 1)) return; const text = (el.textContent || '').replace(/\s+/g, '').toUpperCase(); el.textContent = ''; for (const ch of text) { const s = document.createElement('span'); s.textContent = ch; el.appendChild(s); } })(); </script>";} 0 2712 0 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 es CSS
2273 348 a:1:{s:7:"content";s:578:"<nav id="menu-columna-4" class="menu-columna" aria-label="Sobre UShop"> <ul class="lista-menu-columna"> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/acerca-de-ushop">UShop</a> </li> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://pt.m.wikipedia.org/wiki/UShop_(Com%C3%A9rcio_eletr%C3%B4nico)">UShop Wikipedia (BR)</a> </li> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://changelog.ushop.shopping">Novedades</a> </li> </ul> </nav>";} 0 2713 blocks/wrappers/footer_general.tpl 0 A safe_smarty_block a:1:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";} 0 1 es Acerca de
2272 355 a:1:{s:5:"items";a:1:{s:7:"filling";s:20:"recommended_products";}} 0 2723 0 A products a:4:{s:8:"template";s:28:"blocks/products/products.tpl";s:11:"item_number";s:1:"N";s:12:"hide_options";s:1:"N";s:23:"hide_add_to_cart_button";s:1:"Y";} 0 1 es 56
4026 454 a:1:{s:7:"csbs_id";s:1:"1";} 0 5167 0 A csc_best_stores a:2:{s:8:"template";s:43:"addons/csc_best_stores/blocks/grid_list.tpl";s:13:"item_quantity";s:1:"3";} 0 1 es 1
1964 457 0 5235 0 D template a:1:{s:8:"template";s:70:"addons/wk_adv_notification/blocks/static_templates/wk_notification.tpl";} 0 1 es Advance Notification
1963 458 0 5236 0 A template a:1:{s:8:"template";s:70:"addons/wk_adv_notification/blocks/static_templates/wk_notification.tpl";} 0 1 es FAQ Webkul
2000 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:"31,40";}} 0 2375 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:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:8:"banner_9";s:22:"skeleton_height_mobile";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:23:"skeleton_height_desktop";s:3:"250";} 0 1 es AB: Banner 9
2001 98 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:3:"280";}} 0 2378 ut2-border-box 1 A products a:5:{s:8:"template";s:40:"blocks/products/products_small_items.tpl";s:11:"item_number";s:1:"N";s:15:"thumbnail_width";s:3:"200";s:16:"thumbnail_height";s:3:"100";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 es 01 - Productos de temporada
2002 100 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:"48,49,50,47";}} 0 2380 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:"6";s:10:"navigation";s:1:"D";s:22:"abt__ut2_demo_block_id";s:9:"banner_18";s:22:"skeleton_height_mobile";s:3:"250";s:22:"skeleton_height_tablet";s:3:"250";s:23:"skeleton_height_desktop";s:3:"250";} 0 1 es AB: Banner 18
1989 110 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:"33,36";}} 0 2362 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 es AB: Banner 12
1992 115 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:17:"31,40,33,34,36,35";}} 0 2367 1 A banners a:12:{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";} 0 1 es AB: Banner 16
1959 186 a:1:{s:4:"menu";s:1:"1";} 0 2320 top-quick-links hidden-phone 1 A menu a:18:{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:"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:"N";s:22:"abt__menu_compact_view";s:1:"N";s:24:"abt__ut2_menu_min_height";s:3:"490";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";} 0 1 es Menú principal
1966 186 a:1:{s:4:"menu";s:1:"1";} 0 5240 1 D menu a:18:{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:"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:"N";s:22:"abt__menu_compact_view";s:1:"N";s:24:"abt__ut2_menu_min_height";s:3:"490";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";} 0 1 es Menú principal
1961 188 0 2325 hidden-tablet hidden-desktop 1 D template a:1:{s:8:"template";s:34:"blocks/static_templates/search.tpl";} 0 1 es Buscar
4086 189 0 5244 1 A template a:5:{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";} 0 1 es Contacto
1963 190 0 2327 ut2-top-my-account 1 A my_account a:1:{s:8:"template";s:21:"blocks/my_account.tpl";} 0 1 es
1971 198 a:1:{s:7:"content";s:747:"<nav id="menu-principal" class="menu"> <ul class="lista-menu"> <li class="item-menu"><a class="enlace-menu" href="https://ushop.shopping">Inicio</a></li> <li class="item-menu"><a class="enlace-menu" href="https://ushop.shopping/descarga-la-app-de-ushop">App</a></li> <li class="item-menu"><a class="enlace-menu" href="https://ushop.shopping/blog/">Blog</a></li> <li class="item-menu"><a class="enlace-menu" href="https://ushop.shopping/crear-cuenta/">Registrarse</a></li> <li class="item-menu"><a class="enlace-menu" href="https://ushop.shopping/marketplace">MarketPlace</a></li> <li class="item-menu"><a class="enlace-menu" href="https://ushop.shopping/publicidad-en-el-sitio">Publicidad en UShop</a></li> </ul> </nav>";} 0 2338 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 1 A safe_smarty_block a:1:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";} 0 1 es Shopping
1985 204 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:"38,37,39";}} 0 2358 homepage-banners 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:"600px";s:13:"height_mobile";s:5:"500px";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:0:"";} 0 1 es Banners principales
1993 208 0 2369 1 D 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 es <mark>Inspirado en lo último que viste</mark>
1996 210 a:1:{s:5:"items";a:5:{s:7:"filling";s:6:"newest";s:6:"period";s:1:"A";s:9:"last_days";s:2:"31";s:5:"limit";s:2:"12";s:3:"cid";s:0:"";}} 0 2371 1 A products a:7:{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:15:"thumbnail_width";s:3:"210";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 es Más nuevos
2024 230 0 2396 homepage-our-brands 1 D our_brands a:9:{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";} 0 1 es Marcas
2026 232 0 2399 1 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: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:"";} 0 1 es Explora <mark>categorías</mark>
2028 234 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:"57";}} 0 2401 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:"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:"";} 0 1 es Accesorios para Vehículos
2029 242 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:"69";}} 0 2409 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:"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:"";} 0 1 es Agro
2030 250 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:"74";}} 0 2417 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Bebés
2031 258 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:"82";}} 0 2425 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Libros, Revistas y Comics
2038 269 a:1:{s:7:"content";s:1822:"<section id="redes-sociales-ushop" class="ut2-social-link-block" lang="es"> <h2 class="ty-mainbox-title">{__("get_social")}</h2> <nav class="ut2-social-links" aria-label="Redes sociales de UShop"> <a href="https://www.tiktok.com/@ushop.shopping" target="_blank" rel="me noopener noreferrer" aria-label="TikTok de UShop" title="UShop en TikTok"> <i class="ut2-icon-tiktok" aria-hidden="true"></i> <span class="ty-visually-hidden">TikTok</span> </a> <a href="https://www.instagram.com/ushop.shopping" target="_blank" rel="me noopener noreferrer" aria-label="Instagram de UShop" title="UShop en Instagram"> <i class="ut2-icon-instagram" aria-hidden="true"></i> <span class="ty-visually-hidden">Instagram</span> </a> <a href="https://www.linkedin.com/company/ushopshopping/" target="_blank" rel="me noopener noreferrer" aria-label="LinkedIn de UShop" title="UShop en LinkedIn"> <i class="ut2-icon-linkedin" aria-hidden="true"></i> <span class="ty-visually-hidden">LinkedIn</span> </a> <a href="https://www.youtube.com/@ushop.shopping" target="_blank" rel="me noopener noreferrer" aria-label="YouTube de UShop" title="UShop en YouTube"> <i class="ut2-icon-youtube" aria-hidden="true"></i> <span class="ty-visually-hidden">YouTube</span> </a> <a href="https://www.facebook.com/ushop.shopping.digital" target="_blank" rel="me noopener noreferrer" aria-label="Facebook de UShop" title="UShop en Facebook"> <i class="ut2-icon-facebook" aria-hidden="true"></i> <span class="ty-visually-hidden">Facebook</span> </a> </nav> </section>";} 0 2436 1 A safe_smarty_block a:1:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";} 0 1 es AB: Enlaces sociales
2262 340 a:1:{s:5:"items";a:3:{s:7:"filling";s:28:"ec_live_commerce.passed_only";s:5:"limit";s:1:"8";s:16:"ec_followed_only";s:1:"Y";}} 0 2704 1 D ec_live_commerce_main_content a:7:{s:8:"template";s:43:"addons/ec_live_commerce/blocks/scroller.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:1:"5";s:18:"outside_navigation";s:1:"Y";} 0 1 es aprobado
2272 343 0 2708 1 D template a:5:{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";} 0 1 es Streaming & Comercio en Vivo
1986 346 a:1:{s:7:"content";s:1365:"<p class="text-center"> <span class="info-container" style="color: rgb(165, 165, 165);"> <!-- Icono SVG de info con title dentro del SVG --> <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> <title>Tu historial comienza a generarse según la navegación en el sitio</title> <circle cx="12" cy="12" r="10"></circle> <line x1="12" y1="16" x2="12" y2="12"></line> <line x1="12" y1="8" x2="12" y2="8"></line> </svg> No pierdas nada de vista, todo está en tu historial </span> </p> <style> .text-center { text-align: center; } .info-container { display: inline-flex; align-items: center; /* Alinea verticalmente el icono y el texto */ justify-content: center; /* Asegura que estén centrados */ } svg { margin-right: 4px; /* Espacio entre el icono y el texto */ cursor: pointer; } /* Tooltip adicional (si quieres un tooltip personalizado) */ svg:hover::after { content: "Tu historial comienza a generarse cuando visitas productos en el sitio"; position: absolute; background-color: #333; color: #fff; padding: 5px; border-radius: 4px; font-size: 12px; top: -25px; left: 0; white-space: nowrap; } </style>";} 0 2711 1 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 es Historial
1990 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:2:"41";}} 0 2363 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 es AB: Banner 11
1991 113 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:"35";}} 0 2365 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:"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 es AB: Banner 13
1959 187 a:1:{s:4:"text";s:6:"Moneda";} 0 2321 top-currencies 2 A currencies a:3:{s:8:"template";s:21:"blocks/currencies.tpl";s:6:"format";s:4:"name";s:14:"dropdown_limit";s:1:"2";} 0 1 es Moneda
1966 189 0 5241 2 D template a:5:{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";} 0 1 es Contacto
1963 191 0 2328 top-buttons-grid 2 A template a:1:{s:8:"template";s:49:"blocks/static_templates/abt__ut2__top_buttons.tpl";} 0 1 es AB: Botones Comparar y Favoritos
1964 193 a:1:{s:4:"menu";s:1:"1";} 0 2331 hidden-phone 2 A menu a:14:{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:"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:"N";s:22:"abt__menu_compact_view";s:1:"N";s:24:"abt__ut2_menu_min_height";s:3:"490";s:27:"open_on_sticky_panel_button";s:1:"N";} 0 1 es Menú principal
1972 199 a:1:{s:7:"content";s:704:"<nav id="menu-columna-2" class="menu-columna" aria-label="Enlaces de soporte"> <ul class="lista-menu-columna"> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/contacto/">Contacto</a> </li> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/solicitudes">Solicitudes</a> </li> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/reportes-de-errores">Reportar un error</a> </li> <li class="item-menu-columna"> <a class="enlace-menu-columna" href="https://ushop.shopping/centro-de-ayuda">Centro de Ayuda</a> </li> </ul> </nav>";} 0 2339 blocks/wrappers/footer_general.tpl footer-no-wysiwyg 2 A safe_smarty_block a:1:{s:8:"template";s:28:"blocks/safe_smarty_block.tpl";} 0 1 es Soporte
1975 201 0 2341 2 A template a:5:{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:"";} 0 1 es Copyright
1986 206 a:1:{s:5:"items";a:2:{s:7:"filling";s:15:"recent_products";s:5:"limit";s:1:"5";}} 0 2360 2 A products a:7:{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:"2";s:21:"abt__ut2_loading_type";s:7:"onclick";s:15:"thumbnail_width";s:3:"100";s:25:"abt__ut2_thumbnail_height";s:0:"";s:23:"hide_add_to_cart_button";s:1:"Y";} 0 1 es Recién vistos
1995 209 0 2370 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: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:"";} 0 1 es Productos que <mark>te pueden interesar</mark>
1996 211 a:1:{s:5:"items";a:3:{s:7:"filling";s:11:"bestsellers";s:5:"limit";s:1:"3";s:3:"cid";s:0:"";}} 0 2372 2 A products a:7:{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:15:"thumbnail_width";s:3:"210";s:25:"abt__ut2_thumbnail_height";s:3:"210";s:23:"hide_add_to_cart_button";s:1:"Y";} 0 1 es Los más vendidos
1998 213 0 2374 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 es <mark>Ofertas de temporada</mark> las mejores opciones
2000 214 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:7:"215,213";}} 0 2376 ut2-color-box 2 A 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:"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:23:"hide_add_to_cart_button";s:1:"N";} 0 1 es 02 - Estacional [products]
2005 217 a:1:{s:5:"items";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:21:"282,248,78,94,246,230";}} 0 2382 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:"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 es En demanda esta semana
2010 220 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 2385 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:15:"thumbnail_width";s:3:"210";s:25:"abt__ut2_thumbnail_height";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 es Lo más popular este mes
2014 223 0 2388 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 es Descubre algunas de nuestras <mark>promociones</mark>
2017 225 a:1:{s:9:"promotion";a:2:{s:7:"filling";s:8:"manually";s:8:"item_ids";s:2:"14";}} 0 2390 2 D 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 es AB: Oferta del día
2019 226 0 2391 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 es PROMOCIONES ACTIVAS
2021 228 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 2394 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 es Manténgase actualizado con las últimas noticias (blog)
2028 235 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:"58";}} 0 2402 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Hogar, Muebles y Jardín
2029 243 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:"66";}} 0 2410 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Herramientas
2030 251 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 2418 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Consolas y Videojuegos
2031 259 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:"83";}} 0 2426 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Música y Películas
2034 266 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:"89";}} 0 2433 blocks/wrappers/mainbox_simple.tpl 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:"200px";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 es
2035 267 0 2434 vitrina-del-shopping 2 A html_block a:5:{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:"";} 0 1 es Vitrina del Shopping
2262 341 a:1:{s:5:"items";a:3:{s:7:"filling";s:28:"ec_live_commerce.all_streams";s:5:"limit";s:1:"8";s:16:"ec_followed_only";s:1:"N";}} 0 2705 2 D ec_live_commerce_main_content a:7:{s:8:"template";s:43:"addons/ec_live_commerce/blocks/scroller.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:1:"5";s:18:"outside_navigation";s:1:"Y";} 0 1 es z
2272 344 0 2709 blocks/wrappers/sidebox_important.tpl 2 D template a:5:{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:6:"normal";s:21:"abt__ut_title_opacity";s:1:"Y";} 0 1 es Descubrí los mejores streams & comercio en vivo donde sea que es
1959 67 a:1:{s:4:"text";s:0:"";} 0 2322 top-languages 3 D 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 es Languages
2020 119 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 2392 scroller 3 A ab__promotions a:6:{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";} 0 1 es Promociones
1964 189 0 2326 llamada-a-ushop 3 A template a:5:{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";} 0 1 es Contacto
1963 192 0 2329 ut2-top-cart-content 3 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 es Carrito
1996 212 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 2373 3 A products a:12:{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:1:"3";s:13:"item_quantity";s:1:"5";s:18:"outside_navigation";s:1:"Y";s:23:"hide_add_to_cart_button";s:1:"N";} 0 1 es En oferta
2028 236 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:"59";}} 0 2403 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Celulares y Telefonía
2029 244 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:"67";}} 0 2411 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Belleza y Cuidado Personal
2030 252 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:"76";}} 0 2419 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Construcción
2031 260 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:"84";}} 0 2427 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Productos Sustentables
2262 337 a:1:{s:5:"items";a:3:{s:7:"filling";s:26:"ec_live_commerce.live_only";s:5:"limit";s:1:"8";s:16:"ec_followed_only";s:1:"N";}} 0 2701 blocks/wrappers/mainbox_simple.tpl blq-cenvi 3 A ec_live_commerce_main_content a:2:{s:8:"template";s:39:"addons/ec_live_commerce/blocks/grid.tpl";s:17:"number_of_columns";s:1:"4";} 0 1 es En vivo
2272 345 a:1:{s:7:"content";s:144:"<p class="text-center"><span style="color: rgb(165, 165, 165);">Descubrí los mejores streams & comercio en vivo donde sea que estés</span></p>";} 0 2710 3 A html_block a:1:{s:8:"template";s:21:"blocks/html_block.tpl";} 0 1 es Descubrí
2028 237 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:"60";}} 0 2404 4 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Ropa, Calzados y Accesorios
2030 253 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:"77";}} 0 2420 4 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Cámaras y Accesorios
2031 261 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:"85";}} 0 2428 4 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Salud y Equipamiento Médico
2262 339 a:1:{s:5:"items";a:3:{s:7:"filling";s:25:"ec_live_commerce.upcoming";s:5:"limit";s:1:"8";s:16:"ec_followed_only";s:1:"N";}} 0 2703 blocks/wrappers/mainbox_simple.tpl blq-cenvi 4 A ec_live_commerce_main_content a:2:{s:8:"template";s:39:"addons/ec_live_commerce/blocks/grid.tpl";s:17:"number_of_columns";s:1:"4";} 0 1 es Próximos streaming
2028 238 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:"61";}} 0 2405 5 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Computación
2029 245 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:"68";}} 0 2412 5 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Electrónica, Audio y Video
2030 254 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:"78";}} 0 2421 5 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Industrias y Oficinas
2031 262 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:"86";}} 0 2429 5 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Servicios
2262 334 a:1:{s:5:"items";a:3:{s:7:"filling";s:28:"ec_live_commerce.passed_only";s:5:"limit";s:1:"8";s:16:"ec_followed_only";s:1:"N";}} 0 2691 blocks/wrappers/mainbox_simple.tpl blq-cenvi 5 A ec_live_commerce_main_content a:2:{s:8:"template";s:39:"addons/ec_live_commerce/blocks/grid.tpl";s:17:"number_of_columns";s:1:"4";} 0 1 es Streams recientes
2028 239 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:"63";}} 0 2406 6 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Electrodomésticos y Aires Acondicionados
2029 246 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:"70";}} 0 2413 6 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:"200px";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 es Alimentos y Bebidas
2030 255 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:"79";}} 0 2422 6 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Instrumentos Musicales
2031 263 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:"87";}} 0 2430 6 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Souvenirs, Cotillón y Fiestas
2262 335 a:1:{s:5:"items";a:3:{s:7:"filling";s:28:"ec_live_commerce.all_streams";s:5:"limit";s:1:"8";s:16:"ec_followed_only";s:1:"N";}} 0 2692 blocks/wrappers/onclick_dropdown.tpl 6 D ec_live_commerce_main_content a:2:{s:8:"template";s:39:"addons/ec_live_commerce/blocks/grid.tpl";s:17:"number_of_columns";s:1:"4";} 0 1 es Próximos
2028 240 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:"64";}} 0 2407 7 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Deportes y Fitness
2029 247 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:"71";}} 0 2414 7 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:3:"250";s:13:"height_mobile";s:3:"200";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 es Animales y Mascotas
2030 256 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:"80";}} 0 2423 7 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Joyas y Relojes
2031 264 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:"88";}} 0 2431 7 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Televisores
2029 248 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:"72";}} 0 2415 8 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:4:"auto";s:13:"height_mobile";s:4:"auto";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 es Antigüedades y Colecciones