Building a custom search landing page
✨ Branch: landing
Introduction
In the previous step, we looked at creating a custom template. In scenarios involving promotions and commemorative dates, it's quite common to create special landing pages.
Custom searches
We saw that the search deduces what is needed from the given context. On a custom page however, the context doesn't exist and you need to state which query should be performed to get the results. All this is made possible by the search-result-layout.customQuery.
Query schema
The query schema is one of the custom query search result props that allows you to control the search that the landing page should run. To know more the query schema's possibilities, read through its documentation.
Activity

-
Define a new path (store.custom#landing) in routes.json;
"store.custom#landing": {
"path": "/landing"
}
-
Create a new file called search-landing.jsonc in the blocks folder;
-
Create a new custom template entitled store.custom#landing;
-
Define the image block as one of this template's blocks. This block must have minWidth props of 100% and an image of your choosing.
-
Repeat the same with search-result-layout.customQuery:
{
"store.custom#landing": {
"blocks": [
"image#landingbanner",
"search-result-layout.customQuery"
]
}
}
-
Define the search-result-layout.customQuery block as the querySchema prop that:
- Sorts by latest release date;
- Hides unavailable items;
- Displays a max of 8 items per page;
- Uses "Blue Top Retro Camera" as query;
- Uses
ft as mapField.
If you're still unsure as to how to send your answers, click here.
Building a custom search landing page
✨ Branch: landing
Introduction
In the previous step, we looked at creating a custom template. In scenarios involving promotions and commemorative dates, it's quite common to create special landing pages.
Custom searches
We saw that the search deduces what is needed from the given context. On a custom page however, the context doesn't exist and you need to state which query should be performed to get the results. All this is made possible by the
search-result-layout.customQuery.Query schema
The query schema is one of the custom query search result props that allows you to control the search that the landing page should run. To know more the query schema's possibilities, read through its documentation.
Activity
Define a new path (
store.custom#landing) inroutes.json;Create a new file called
search-landing.jsoncin the blocks folder;Create a new custom template entitled
store.custom#landing;Define the
imageblock as one of this template's blocks. This block must haveminWidthprops of 100% and an image of your choosing.Repeat the same with
search-result-layout.customQuery:{ "store.custom#landing": { "blocks": [ "image#landingbanner", "search-result-layout.customQuery" ] } }Define the
search-result-layout.customQueryblock as the querySchema prop that:ftas mapField.If you're still unsure as to how to send your answers, click here.