top of page
To test this feature, visit your live site.
The Wix Wiz Community Forum
Welcome! Have a look around and join the discussions.
Velo (Wix Code)
Engage in discussions about Wix Velo on our Q&A forum. Ask tutorial-related queries, seek advice, and share your project
101Wix Classic Editor
Dive into Wix Classic Editor discussions on our Q&A forum. Ask questions, seek advice, and share your website projects.
26Editor X
Dive into Wix Editor X discussions on our Q&A forum. Ask questions, seek advice, and share your website projects.
6Wix Studio
Dive into the new Wix Studio discussions on our Q&A forum. Ask questions, seek advice, and share your website projects.
10Courses
Have questions about Wix Wiz courses? Ask away in our forum! Get the answers you need to enhance your learning.
3Apps & Templates
This is a channel dedicated to questions about apps and templates developed by the Wix Wiz Team.
5
New Posts
- Velo (Wix Code)Is it Possible ? To have the API of wix then having a another System example Analytics system using laravel. Connecting the API to the System?? getting all information in that certain E com webiste (WIX) We wanted to make our own Analytics cuz Wix analytics has lacking requirements in our end.
- Velo (Wix Code)Hi Eitan, I have two collections Course Content and Faculties. I have a mutli-reference field inside Course Content which references names from Faculties collection. I am trying to populate a repeater which will be displayed on page load using the Course Content collection and display the value from the mutli-reference value. I am trying to use wixdata.queryreferenced() but am unable to display the value from the reference field.
- Wix Classic EditorI watched the youtube video on creating a search bar for a dynamic page. It was a great video. But I am new to Javascript. I have gotten it to work-ish, but however when the search bar is null or empty, 'after' typing something in it, the repeater contents get scrambled. For some reason it doesn't stay in the order or goes back to the order before the search or the order outlined in the sorting method. After a user clears out the search box after a search is done. Any help or suggestion would be greatly appreciated. Thanks, Aaron import wixData from 'wix-data'; $w.onReady(function () { $w("#magazineRepeater").onItemReady(($item, itemData)=>{ $item("#contents").text = itemData.contents; }) $w("#magazineRepeater").onItemReady(($item, itemData)=>{ $item("#contents").text = itemData.contents; }) async function search() { const query = $w("#searchQueryInput").value; const contentsQuery = wixData.query("MagazineArchives").contains("contents", query); const magDataQueryResults = await contentsQuery .find(); const MagazineArchives = magDataQueryResults.items; $w("#magazineRepeater").data = MagazineArchives; } $w("#searchButton").onClick(search); let throttle; $w('#searchQueryInput').onInput(() => { clearTimeout(throttle); throttle = setTimeout(() => { search(); }, 500); }) }); Before: After:
bottom of page