...
Expand |
---|
|
Code Block |
---|
| {
"title": "Product",
"type": "object",
"properties": {
"accessor": {
"type": "string",
"description": "hits accessor (typically leave empty)"
}
}
} |
Complete Layout Block: View file |
---|
name | product_list_bar.json |
---|
|
|
pagination
a component to appear as a child element of a product_list_bar Layout Block and which displays the pagination controls to the user
Expand |
---|
|
Code Block |
---|
| {
"title": "Pagination",
"type": "object",
"properties": {
"accessor": {
"type": "string",
"description": "hits accessor (typically leave empty)"
}
}
} |
Complete Layout Block: |
title
a simple title element showing a title H1 on the whole width of the page
Expand |
---|
|
localized properties must be adapted to match your e-shop languages. Code Block |
---|
| {
"title": "Title (H1)",
"type": "object",
"properties": {
"title": {
"type": "object",
"title": "Title",
"properties": {
"de": {
"type": "string",
"description": "title in German"
},
"fr": {
"type": "string",
"description": "title in French"
}
}
}
}
} |
Complete Layout Block: |
search_title
a simple title element showing a search title H1 on the whole width of the page (very similar template to integrate, but has a different internal behavior in Boxalino due to the parameter bx-search-title.
Expand |
---|
|
localized properties must be adapted to match your e-shop languages. Code Block |
---|
| {
"title": "Title (H1)",
"type": "object",
"properties": {
"title": {
"type": "object",
"title": "Normal Search Title",
"properties": {
"de": {
"type": "string",
"description": "normal search titlein German"
},
"fr": {
"type": "string",
"description": "normal search title in French"
}
}
},
"bx_alternate_title": {
"type": "object",
"title": "Corrected Search Title",
"properties": {
"de": {
"type": "string",
"description": "corrected search title in German"
},
"fr": {
"type": "string",
"description": "corrected search titlein French"
}
}
},
"accessor": {
"type": "string",
"description": "search accessor (typically leave empty)"
}
}
} |
Complete Layout Block: |
facet_list
display the facets in a search or navigation page (has no children blocks, all the facets are provided as an array in the response parameter bx-facets)
Expand |
---|
|
Code Block |
---|
| {
"title": "Facets",
"type": "object",
"properties": {
"accessor": {
"type": "string",
"description": "facet accessor (typically leave empty)"
}
}
} |
Complete Layout Block: |