Grid

You can disable the "Top item" and get a grid layout. Make sure to also request 9 products, to fill the grid to the maximum.

<link rel="stylesheet" href="https://cdn.luigisbox.com/autocomplete.css"/>

<script>
function LBInitAutocomplete() {
  AutoComplete({
    Layout: 'heromobile',
    TrackerId: '179075-204259',
    ShowHeroProduct: false,
    Locale: 'en',
    Translations: {
      en: {
        types: {
          item: {
            name: "Products",
          },
          query: {
            name: "Searches"
          },
          category: {
            name: "Categories"
          }
        }
      }
    },
    Types: [
      {
        type: 'product',
        size: 9
      },
      {
        type: 'query'
      },
      {
        type: 'category'
      }
    ]
  }, '#q')
}
</script>

<script src="https://cdn.luigisbox.com/autocomplete.js" async onload="LBInitAutocomplete()"></script>
Previous example
Typing suggestions
Hero layout examples

Try it out →

Next example
Formatting prices
Hero layout examples

Try it out →