Thank you so much. I am trying to create a custom search for my blog that populates in a multi state box. Couldn't find a tut that helped, but this was perfect. Huzzah!
Thanks for the great tutorial. I am new to Wix and tried to implement this, but I am finding difficulties with it as it is not refreshing the Repeater in the order it previously was in. Any help would be greatly appreciated! When I delete the contents of the search box, I get a 'red' box. Any thoughts? I know that the Repeater needs to refresh when the Search box is null or empty.
Cristal clear tutorial, many many thanks! Do you know if it is possible to search a collection including an address field type, which is an array type, and not a text type ? It would be powerful to search within the 'city" or the 'formatted" subfields of the address field for example.
Thanks! If I'm not mistaken the address field is an object. You should be able to query its properties using dot notation. For example: wixData.query("Example").eq("address.city", "New York").find()
@@thewixwiz Great, as simple as that! I thought I tried this way but I probably made a mistake and then went in a completely different direction. For other interested people, it works in my case with wixdata.filter() as well as with wixdata.query()... Many thanks again, your tutorials and advices are of great value!
This was a great tutorial. I've had no trouble implementing a search input, or adding filters bound to the dataset in the wix editor... but seem to have trouble coming up with a good solution that combines search and filters. Even with a fully coded option I run into issues. Has anyone found best practice for this?
Hi thank you this is exactly what i want. I've followed the coding but i'm struggling to check its correct from your video? and also everytime i try it I cant make the repeater expand and show any results... I'm doing this in a dynamic page does this matter? but just cant see where i'm going wrong. please help.
hei, this does not work on editor x , it tells me that .or is not a property of type 'pomise' how can i do that, cause i was trying toimplement the .or() query operator
Hey, thanks for commenting and sharing about your project! I offer viewers two options for getting assistance with their projects: 1. My free forum: thewixwiz.com.com/forum - I try to address questions there at least once a week. Please support your question with code snippets, screenshots, and even video. 2. Offering my services as a developer. You can schedule a consult at thewixwiz.com/book-online or fill out this onboarding form: thewixwiz.com/client-onboarding I appreciate your support and thanks for watching!
Anytime i search anything, my repeater just goes completely empty instead of displaying the results. It's a dynamic one so I'm not sure if that is why?
Hi, it's hard to know what's wrong without seeing your site and code. You are welcome to post to the forum thewixwiz.com/forum Or schedule a consultation to get assistance: www.thewixwiz.com/book-online
Awesome! It worked very well! I'm creating an item database, and the results are showing up nicely as I input the keywords. However, only a maximum of 50 results are being displayed. Is it possible for the search to keep these 50 results and create a "next" and "previous" page to navigate through the results?
Great! Yes that can be done using .next() and .prev(). I elaborate on this in Module 5 of the course which will be coming out this weekend: www.thewixwiz.com/courses
Happy to hear! Since there may be many products that match a search query I'm not sure what image you would like to display. Generally displaying an image would be done by assigning the url in the data to the .src of an image element.
Hi! Is there any option to filter the typos in the input? So for example if customers want to search for books and they write boks or something similar, I would like to filter this and appear all the "books" in the output (repeater etc.). I saw something like fuzzy with WixSearch but I don't understand how that filter is working tbh. Thank you!
Hi, great question! I've heard rumors of WixSearch introducing semantic search but that wouldn't hold for a custom search experience. There are a few approaches I can think of when building a custom search experience - 1. Utilizing AI for semantic search: this would include generating vectors for the searchable data as well as the query. Best done with a vector database. 2. Utilizing an API: I'm imagining an API which takes a term and returns possible alternative spellings. You can then query for those alternatives instead of the misspelled word. 3. Handling it internally: For example if the search term doesn't return any results you can break the search term down and query for those parts. So for bok - no results show up so you query for "bo" and "ok" instead. These are just off the top of my head but it's an interesting topic to explore!
@@thewixwizthanks for the advice! I tried recently to use the built in Site search. It works fine but it grabs only products that are in wix store. I need the products that are in my custom collection. And if I click on the results, it redirects me to the default product-page items not to my dynamic page. I tried also to set the redirects using redirect url manager but no success. The redirect works only when I enter the page url directly, not if I click to my product item on website to reroute me to the dynamic page..😢
Hi, wow, great video! I want to ONLY be able to search for a small selection of pages, without having to hide them on the site. Is there a easy way to make this possible? Would be extremely grateful for a response!
@@thewixwiz They are not dynamic at the moment. I want customers to use the search element to write in their type of business, and then get directed to a matching product page. F. example, when a customer have a "hair salon" they can use search element, type their type of business, and get a resulting product pages specified for hair saloons. But I dont want it to be possible to search for pages like "contact information" or "about us" or random products, or random product pages. Only able to search for a small collection of sites( or "types of businesses") Do you understand, sorry if Im not a good at explaining😅?
There is an autogenerated field in the collection that stores the link data. You can assign the link property of a button or navigate to it with Wix location API. My video on dynamic pages may help.
Hey, thanks for commenting and sharing about your project! We offer viewers a few options for getting assistance with their projects: 1. Our free forum: thewixwiz.com.com/forum - I try to address questions there at least once a week. Please support your question with code snippets, screenshots, and even video. 2. Developer services. You can schedule a consult at thewixwiz.com/book-online. I appreciate your support and thanks for watching!
It mostly works well, but if I combine multiple search terms (to refine it further) it does not work. How can I make it so that the more terms I type, the more refined the search becomes?
@@thewixwiz Thank you for your response. When I tried .and the repeater doesn't show at all (it's collapsed). When I filtered another term to get the repeater to show and then typed in another search term, the repeater completely disappeared. Is there something else I could do?
Esta formidable el tutorial. Me gustaría saber como puedo hacer esta función pero agregando los resultados de busqueda a un elemnto TexInput. Te cuento, tengo una colección de datos de perdonas, quiero que al agregar el dato "ID" en un "TextImput" dar clic en el botón buscar, aparezca la información de la persona (nombre, a. paterno, ap materno) en el "TextImput" que le corresponda a cada dato. ¿me podrás ayudar por favor? Saludos y gracias por tus videos.
Muchas Gracias! Please post any technical questions you have to our forum: www.thewixwiz.com/forum Make sure to provide all the necessary context (code, screenshots, link to your site, etc.) for us to help!
Hey, thanks for commenting and sharing about your project! I offer viewers two options for getting assistance with their projects: 1. My free forum: thewixwiz.com.com/forum - I try to address questions there at least once a week. Please support your question with code snippets, screenshots, and even video. 2. Offering my services as a developer. You can schedule a consult at thewixwiz.com/book-online or fill out this onboarding form: thewixwiz.com/client-onboarding I appreciate your support and thanks for watching!
For some reason I can´t get it to work! It´s been driving me nuts... I´ve been trying to get a search bar to work for the past week. My database is called "items1" I´m trying to only search the first field "title" but no go! Wix has both $item, itemData (3rd line and 4th line) underlined in red, saying "cannot find name". Not sure what I´m doing wrong. import wixData from 'wix-data'; $w.onReady (function () {
Hi, Please post any technical questions you have to our forum: www.thewixwiz.com/forum Make sure to provide all the necessary context (code, screenshots, link to your site, etc.) for us to help!
Thank you so much. I am trying to create a custom search for my blog that populates in a multi state box. Couldn't find a tut that helped, but this was perfect. Huzzah!
Very useful! Great work as always, Eitan! Always love seeing new videos from you on Mondays!
Thanks man! It's good to be back :)
Wow ❤️ I'm trying to learn Wix development.. very useful your videos ❤️❤️
finally found it! Saving this!!!!
Thanks for the great tutorial. I am new to Wix and tried to implement this, but I am finding difficulties with it as it is not refreshing the Repeater in the order it previously was in. Any help would be greatly appreciated! When I delete the contents of the search box, I get a 'red' box. Any thoughts? I know that the Repeater needs to refresh when the Search box is null or empty.
Cristal clear tutorial, many many thanks! Do you know if it is possible to search a collection including an address field type, which is an array type, and not a text type ? It would be powerful to search within the 'city" or the 'formatted" subfields of the address field for example.
Same issue for me: search address fields. Haven't been able to find out a solution in the Wix doc yet.
Thanks! If I'm not mistaken the address field is an object. You should be able to query its properties using dot notation. For example:
wixData.query("Example").eq("address.city", "New York").find()
@@thewixwiz Great, as simple as that! I thought I tried this way but I probably made a mistake and then went in a completely different direction. For other interested people, it works in my case with wixdata.filter() as well as with wixdata.query()... Many thanks again, your tutorials and advices are of great value!
I had to comment thank you my guy you made it clear enough for me to understand
yes i was looking for this for a while. thanx.
thank you so much, well explained and demonstrated. 10 out of 10
Thanks!
thanks so much! how do we add a search via enter button as well as the search button?
Thanks for watching! You can use the keyPress event handler of the input to detect when the user presses Enter and then execute the search.
This was a great tutorial. I've had no trouble implementing a search input, or adding filters bound to the dataset in the wix editor... but seem to have trouble coming up with a good solution that combines search and filters. Even with a fully coded option I run into issues. Has anyone found best practice for this?
Hi, Can I get the code script somewhere?
Hi thank you this is exactly what i want. I've followed the coding but i'm struggling to check its correct from your video? and also everytime i try it I cant make the repeater expand and show any results... I'm doing this in a dynamic page does this matter? but just cant see where i'm going wrong. please help.
Hi, the fact that it's a dynamic page shouldn't make a difference. Otherwise it's a bit hard to help without seeing what you have done.
hei, this does not work on editor x , it tells me that .or is not a property of type 'pomise'
how can i do that, cause i was trying toimplement the .or() query operator
Hey, thanks for commenting and sharing about your project!
I offer viewers two options for getting assistance with their projects:
1. My free forum: thewixwiz.com.com/forum - I try to address questions there at least once a week. Please support your question with code snippets, screenshots, and even video.
2. Offering my services as a developer. You can schedule a consult at thewixwiz.com/book-online or fill out this onboarding form: thewixwiz.com/client-onboarding
I appreciate your support and thanks for watching!
Anytime i search anything, my repeater just goes completely empty instead of displaying the results. It's a dynamic one so I'm not sure if that is why?
Hi, it's hard to know what's wrong without seeing your site and code.
You are welcome to post to the forum
thewixwiz.com/forum
Or schedule a consultation to get assistance:
www.thewixwiz.com/book-online
Awesome! It worked very well! I'm creating an item database, and the results are showing up nicely as I input the keywords. However, only a maximum of 50 results are being displayed. Is it possible for the search to keep these 50 results and create a "next" and "previous" page to navigate through the results?
Great! Yes that can be done using .next() and .prev(). I elaborate on this in Module 5 of the course which will be coming out this weekend:
www.thewixwiz.com/courses
Great Tutorial, its working perfectly with text. But there is a way to also appear a hyperlink for the item page link in the search result?
Thanks! Yes you can using the .html property of a text element. Or a button/image.
this was such a helpful video. But how do we add products image next to its name in the search bar?
Happy to hear! Since there may be many products that match a search query I'm not sure what image you would like to display. Generally displaying an image would be done by assigning the url in the data to the .src of an image element.
Hi! Is there any option to filter the typos in the input? So for example if customers want to search for books and they write boks or something similar, I would like to filter this and appear all the "books" in the output (repeater etc.). I saw something like fuzzy with WixSearch but I don't understand how that filter is working tbh.
Thank you!
Hi, great question! I've heard rumors of WixSearch introducing semantic search but that wouldn't hold for a custom search experience.
There are a few approaches I can think of when building a custom search experience -
1. Utilizing AI for semantic search: this would include generating vectors for the searchable data as well as the query. Best done with a vector database.
2. Utilizing an API: I'm imagining an API which takes a term and returns possible alternative spellings. You can then query for those alternatives instead of the misspelled word.
3. Handling it internally: For example if the search term doesn't return any results you can break the search term down and query for those parts. So for bok - no results show up so you query for "bo" and "ok" instead.
These are just off the top of my head but it's an interesting topic to explore!
@@thewixwizthanks for the advice! I tried recently to use the built in Site search. It works fine but it grabs only products that are in wix store. I need the products that are in my custom collection. And if I click on the results, it redirects me to the default product-page items not to my dynamic page. I tried also to set the redirects using redirect url manager but no success. The redirect works only when I enter the page url directly, not if I click to my product item on website to reroute me to the dynamic page..😢
Hi, wow, great video! I want to ONLY be able to search for a small selection of pages, without having to hide them on the site. Is there a easy way to make this possible? Would be extremely grateful for a response!
Thanks! Are they dynamic pages? What do you mean by "search for pages"?
@@thewixwiz They are not dynamic at the moment. I want customers to use the search element to write in their type of business, and then get directed to a matching product page. F. example, when a customer have a "hair salon" they can use search element, type their type of business, and get a resulting product pages specified for hair saloons. But I dont want it to be possible to search for pages like "contact information" or "about us" or random products, or random product pages. Only able to search for a small collection of sites( or "types of businesses") Do you understand, sorry if Im not a good at explaining😅?
Does this work on Dynamic Page with Dynamic Page Dataset?
It can! Filtering datasets works slightly differently though.
Can this search multiple databases at once? So that I don't have to create a new search for each database.
You could manually run two queries and aggregate the results.
How would you link each of the individual search results to the dynamic pages associated with that data?
There is an autogenerated field in the collection that stores the link data. You can assign the link property of a button or navigate to it with Wix location API. My video on dynamic pages may help.
Can we do search method for tables instead of repeaters
Yes!
Hello I write the code and my dynamic page 404 error not showing
Hey, thanks for commenting and sharing about your project!
We offer viewers a few options for getting assistance with their projects:
1. Our free forum: thewixwiz.com.com/forum - I try to address questions there at least once a week. Please support your question with code snippets, screenshots, and even video.
2. Developer services. You can schedule a consult at thewixwiz.com/book-online.
I appreciate your support and thanks for watching!
It mostly works well, but if I combine multiple search terms (to refine it further) it does not work. How can I make it so that the more terms I type, the more refined the search becomes?
If you use .and instead of .or it will refine the search.
@@thewixwiz Thank you for your response. When I tried .and the repeater doesn't show at all (it's collapsed). When I filtered another term to get the repeater to show and then typed in another search term, the repeater completely disappeared. Is there something else I could do?
@@thewixwiz any ideas or could you point me in the right direction. I’m a complete newbie.
Hi, does this work for Wix Stores search results?
It can!
if I input my information with the cms menu will this still work?
What do you mean by CMS menu?
@@thewixwiz I have very large repeater controlled by the cms, I would like to sort just though that database
Esta formidable el tutorial.
Me gustaría saber como puedo hacer esta función pero agregando los resultados de busqueda a un elemnto TexInput.
Te cuento, tengo una colección de datos de perdonas, quiero que al agregar el dato "ID" en un "TextImput" dar clic en el botón buscar, aparezca la información de la persona (nombre, a. paterno, ap materno) en el "TextImput" que le corresponda a cada dato. ¿me podrás ayudar por favor?
Saludos y gracias por tus videos.
Muchas Gracias!
Please post any technical questions you have to our forum:
www.thewixwiz.com/forum
Make sure to provide all the necessary context (code, screenshots, link to your site, etc.) for us to help!
@@thewixwiz Listo! ya subí mi pregunta al foro y tambien mande los datos y link de mi sitio web.
Te agradezco.
Hi, Could you please make a video regarding how to manually set up google pay and apple pay to a wix store instead of paying a fee to a 3rd party?
Hey! You can make video suggestions here:
thewixwiz.com/youtube
is there a way to achieve this with no code?
I don't think so...
Some of my fields arent showing, any help?
Hey, thanks for commenting and sharing about your project!
I offer viewers two options for getting assistance with their projects:
1. My free forum: thewixwiz.com.com/forum - I try to address questions there at least once a week. Please support your question with code snippets, screenshots, and even video.
2. Offering my services as a developer. You can schedule a consult at thewixwiz.com/book-online or fill out this onboarding form: thewixwiz.com/client-onboarding
I appreciate your support and thanks for watching!
For some reason I can´t get it to work! It´s been driving me nuts... I´ve been trying to get a search bar to work for the past week.
My database is called "items1" I´m trying to only search the first field "title" but no go! Wix has both $item, itemData (3rd line and 4th line) underlined in red, saying "cannot find name". Not sure what I´m doing wrong.
import wixData from 'wix-data';
$w.onReady (function () {
$w("#mockDataRepeater").onItemReady(($item, itemData)) => {
$item("#title").text = itemData.title;
});
async function search(){
const query = $w("#searchQueryInput").value;
const titleQuery = wixData.query("Items1").contains("title", query);
const mockDataQueryResult = await wixData.query("Items1").contains("title", query).find();
const mockData = mockDataQueryResult.items;
$w('#mockDataRepeater').data = mockData;
}
$w("#searchButton").onClick(search)
$w("#searchQueryInput").onInput(() => {
search();
})
});
Hi,
Please post any technical questions you have to our forum:
www.thewixwiz.com/forum
Make sure to provide all the necessary context (code, screenshots, link to your site, etc.) for us to help!
have you fixed it?