@bill65358 It takes some time to understand how to best use the various repeater functions. In the case of onItemReady() , the key line in the documentation for me is the very first line: “Sets the function that runs when a new repeated item is created.” Having that in mind, I know that this function needs to be in place before the data is assigned to the repeater because it will need to run on every item of the repeater. You changed it from my suggested code above to assign the data in the onItemReady. You definitely don’t want to do that.
Also, be sure that the repeater is not connected to a dataset. You’re using the wixData aggregate function to populate the repeater, so there’s no need for a dataset.