Could you please help me with this one? These are my collection’s items count in Live. Many parts are left not counted, rather randomly as far as I can tell.
And this is what I see in Preview Mode. Sandbox/Live properly synced. All good.
And this is the code, multiplied as many times as the categories (text boxes) shown above.
$w.onReady(function () {
(...)
$w("#dataset1").onReady( () => {
wixData.query("LawDatabase")
.eq("tags","13Α")
.count()
.then( (num) => {
let numberOfItems = num;
$w("#count13A").text = num.toString()
});
(...)
});
});
So, any idea why is this happening? Why I see zeros in Live site?