WIX Ideas Team
👋🏽Hello WIXer,
Do you want your users to save part of their filters on searchbars or dropdowns?
Then this is the right place for you 🙂
In this tutorial, you will learn how to insert values from your filter elements into your user's Local Storage (Which can be saved for as long as possible in their browser), and then when they visit that page the values will be selected by default and so will the filter.
To accomplish this, we use the 'import { local } from 'wix-storage';' library.

I USED THE FOLLOWING APIs FOR LOCAL STORAGE🎉
local.setItem("key", "value") - To save the item in local storage
local.getItem("key") - To retrieve saved item from local storage
local.removeItem("key") - To delete saved item from local storage
TO FILTER USING SAVED ITEM FROM LOCAL STORAGE 🚀
In order to filter the repeater automatically, I added the wixData.query function within the $w.onReady function. This will allow the filter to run when the elements in the website are loaded.
PRETTY MUCH THAT 🤩
The flow goes from the user selecting a value to filter, then the value is saved in their local browser, now when the user refreshes or revisits the same page, the value is pre-selected on their filter element and the repeater will be filtered automatically.
THANK YOU FOR READING, YOU ARE AMAZING 😍
Code
LEAVE A COMMENT
Thanks for leaving a comment🎉

Walter
More Details? Watch video
Hi, you can click here to watch the video https://www.youtube.com/watch?v=9bx7-nBeZ5c

Walter Odibi
Awesome Feature
This tutorial shows you how to display views on your Wix repeater.
📺WATCH VIDEO HERE https://www.youtube.com/watch?v=Iz7SdaCSdXg

Walter Odibi
Amazing tutorial
This amazing tutorial will show you how to a comment section to your WIX dynamic page.
📺WATCH VIDEO HERE https://www.youtube.com/watch?v=f8-vJQFNZ_c

Walter Odibi
Great Feature🎉
This amazing tutorial will show you how to add a visitor view counter to your WIX dynamic page.
🚩MORE TUTORIALS https://www.wixgenius.com/wix-tutorials
RELATED TUTORIALS 🚀

Add Like to WIX Dynamic Page
Learn how to add a "LIKE" counter to your dynamic page.

Multiple Database Field Search