diff --git a/implementing-nosto/implement-search/getting-started-with-nosto-search/implementing-category-pages.md b/implementing-nosto/implement-search/getting-started-with-nosto-search/implementing-category-pages.md index 47a3795..b14eeca 100644 --- a/implementing-nosto/implement-search/getting-started-with-nosto-search/implementing-category-pages.md +++ b/implementing-nosto/implement-search/getting-started-with-nosto-search/implementing-category-pages.md @@ -21,7 +21,6 @@ init({ categoryCssSelector: '#MainContent', categoryQuery: { - name: 'serp', products: { categoryId: "1234567", categoryPath: "dresses", @@ -35,7 +34,7 @@ init({ #### categoryQuery parameter as function -In the example above, we supply autocomplete query parameters as an object. Additionally, categoryQuery parameters can also be supplied as a function. The function flavor can be used for building complex query parameters and provides access to other pre-defined configuration parameters. Section below shows an example of categoryQuery supplied as a function which provides the product variationId by accessing the pre-defined categoryId() and categoryPath() methods from the default configuration. +In the example above, we supply autocomplete query parameters as an object. Additionally, `categoryQuery` parameter can also be supplied as a function. The function flavor can be used for building complex query parameters and provides access to other pre-defined configuration parameters. Section below shows an example of `categoryQuery` supplied as a function which provides the product `variationId` by accessing the pre-defined `categoryId` and `categoryPath` methods from the default configuration. ```javascript import { init } from '@nosto/preact' @@ -50,7 +49,6 @@ init({ categoryQuery: () => { return { - name: 'serp', products: { categoryId: this.categoryId(), categoryPath: this.categoryPath(), @@ -65,11 +63,11 @@ init({ {% hint style="info" %} If you want to integrate only Categories without Search or Autocomplete, ensure that the following entries are removed or commented out: -serpComponent +`serpComponent` -historyComponent +`historyComponent` -autocompleteComponent +`autocompleteComponent` {% endhint %} ### Handling native results diff --git a/implementing-nosto/implement-search/implement-search-using-code-editor/implementing-autocomplete.md b/implementing-nosto/implement-search/implement-search-using-code-editor/implementing-autocomplete.md index 1b4c7b1..412e4d7 100644 --- a/implementing-nosto/implement-search/implement-search-using-code-editor/implementing-autocomplete.md +++ b/implementing-nosto/implement-search/implement-search-using-code-editor/implementing-autocomplete.md @@ -40,7 +40,7 @@ init({ #### autocompleteQuery parameter as function -In the example above, we supply autocomplete query parameters as an object. Additionally, autocompleteQuery parameters can also be supplied as a function. The function flavor can be used for building complex query parameters and provides access to other pre-defined configuration parameters. Section below shows an example of autocompleteQuery supplied as a function which provides the product variationId by accessing the pre-defined variationId() method from the default configuration. +In the example above, we supply autocomplete query parameters as an object. Additionally, the `autocompleteQuery` parameter can also be supplied as a function. The function flavor can be used for building complex query parameters and provides access to other pre-defined configuration parameters. Section below shows an example of `autocompleteQuery` supplied as a function which provides the product variation id by accessing the pre-defined `variationId` method from the default configuration. {% code title="index.js" %} ```javascript diff --git a/implementing-nosto/implement-search/implement-search-using-code-editor/implementing-search-page.md b/implementing-nosto/implement-search/implement-search-using-code-editor/implementing-search-page.md index 8a52de1..ed64ab0 100644 --- a/implementing-nosto/implement-search/implement-search-using-code-editor/implementing-search-page.md +++ b/implementing-nosto/implement-search/implement-search-using-code-editor/implementing-search-page.md @@ -21,7 +21,6 @@ init({ query: 'q', }, serpQuery: { - name: 'serp', products: { size: 20, from: 0, @@ -32,7 +31,7 @@ init({ #### serpQuery parameter flavors -In the example above, we supply serp query parameters as an object. Additionally, serpQuery parameters can also be supplied as a function. The function flavor can be used for building complex query parameters and provides access to other pre-defined configuration parameters. Section below shows an example of serpQuery supplied as a function which provides the product variationId by accessing the pre-defined variationId() method from the default configuration. +In the example above, we supply serp query parameters as an object. Additionally, the `serpQuery` parameter can also be supplied as a function. The function flavor can be used for building complex query parameters and provides access to other pre-defined configuration parameters. Section below shows an example of `serpQuery` supplied as a function which provides the product variation id by accessing the pre-defined `variationId` method from the default configuration.
import { init } from '@nosto/preact'
@@ -52,7 +51,6 @@ init({
},
serpQuery() {
return {
- name: 'serp',
products: {
size: 20,
from: 0,
@@ -129,7 +127,6 @@ init({
},
compressUrlParameters: true,
serpQuery: {
- name: 'serp',
products: {
size: 20,
from: 0,