Can t solve the Broken Reference When Inserting New Values

@bwprado Hi! Yes I created the Members collection.

Here’s the comment section code. I had to publish it separately (everything is in order) because Wix forum didn’t allow me to publish it all together.

Comment section code:

import wixData from ‘wix-data’ ;
import wixUsers from ‘wix-users’ ;

// comments count
$w . onReady ( function () {
// TODO: write your page related code here…
setTimeout ( function () {
let totalCount = $w ( “#Reviews” ). getTotalCount ();
$w ( ‘#text157’ ). text = totalCount . toString () + " comments"

}, 5000 );
});