I think a better User Experience is to take them straight to the product instead of returning a list of search results with a single product in the list.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- सीआरएम
- e-Commerce
- लेखांकन
- इन्वेंटरी
- PoS
- Project
- MRP
This question has been flagged
1
Reply
2787
Views
You can redirect the search results page to the product page if there is one match:
Create a new view to inherit and override the default by injecting the redirect at the start of the search results page:

This also sets the body of the page to nothing, so you don't see the results page render. If you can live with the page refresh, this might be a solution for you.
Code:
<t t-call="website.layout" position="before">
<t t-if="bins and len(bins[0]) == 1">
<style type="text/css">body { display: none; } </style>
<meta http-equiv="refresh" t-attf-content="0;url=/shop/product/{{ bins[0][0]['product'].id }}" />
</t>
</t>
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
|
4
नव॰ 23
|
3950 | ||
|
|
1
मार्च 15
|
7503 | ||
|
|
1
मार्च 15
|
6476 | ||
|
|
0
नव॰ 19
|
2942 | ||
|
|
2
मार्च 24
|
2142 |