List item count

have created a list and linked it to a database with a filter so that only the logged in members uploads are shown on their member page. i need to add a text that is connected to the number of items that are shown on the list on the page. how do i do this?

Hi Stefan,

Welcome to the Wix Code Forums.

You don’t show any of your code so I can only speculate, but you should be able to get the size of your array of data to be displayed and then set a text field with that value. Something like this:

$w("#text1").text = "" + dataArray.length;

I hope this helps,

Yisrael