top of page

Forum Posts

ag.eu
Mar 07, 2023
In Site & Page Design
Is there any way to do it?
0
3
8
ag.eu
Mar 03, 2023
In Coding with Velo
Hi, I hope you can help me because I'm going crazy :( I need to show the #itemsDataset images filtered but I have a problem with the price range filter. The prices of the products are in #dataset1, where they are referenced to #itemsDataset I have this code: wixData.query('Stores/Products') .ge('price', 0) .le('price', 400) .find() .then(results => { let itemsIds = results.items.map(item => item._id); let filter = wixData.filter().eq('_id', itemsIds); return wixData.query('Items').setFilter(filter).find(); }) .then(items => { $w('#itemsDataset').setItems(items.items); }) .catch(err => { console.log(err); });
Filter by price range content media
0
0
15

ag.eu

More actions
bottom of page