# Search product on Quotes page

**Step 1**: Enable the option in the **Settings** -> **General** -> **Advanced features** -> **Show search product on the quote list page**

<figure><img src="/files/3tJ6EVpzLi1Z2LmJ1MG7" alt=""><figcaption></figcaption></figure>

**Step 2**: Add a liquid file into your theme

Select a theme > Edit code > Create a new file **quote-search.liquid** in Sections folder.

<figure><img src="/files/YJwfvdrXEzwDGSXqmmtD" alt=""><figcaption></figcaption></figure>

And insert liquid code below into **quote-search.liquid**

```
{%- if predictive_search.performed -%}
{
"results_count": {{ predictive_search.resources.products.size }},
"products": [
	{%- for product in predictive_search.resources.products -%}
    {%- unless forloop.first -%},{%- endunless -%}
	{%- if product.id != '' -%}
	{
		"available": {{ product.available | json }},
		"id": {{ product.id }},
		"handle": "{{ product.handle }}",
		"options": {{ product.options | json }},
		"variants": {{ product.variants | json }},
		"price": {{ product.price }},
		"tags": {{ product.tags | json }},
		"title": {{ product.title | json }},
		"type": {{ product.type | json }},
		"url": "{{ product.url }}",
		"vendor": {{ product.vendor | json }},
		"featured_image": "{{ product.featured_image.src | image_url }}",
		"collections": {{ product.collections | map: 'id' | json }}
	}
	{%- endif -%}
	{%- endfor -%}
]
}
{%- else -%}
  { "results_count": 0, "products": [] }
{%- endif -%}
```

Check result on the quote list page

<figure><img src="/files/dfUzFDXDxLAvwRFnSduG" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://quote-guide.storeify.app/integration/search-product-on-quotes-page.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
