top of page

GROUPS

Feel free to hop into any of these groups, connect with fellow members, and forge new friendships—just like you would on a forum page!

Groups

View groups and posts below.


bottom of page
import wixUsers from 'wix-users'; import wixData from 'wix-data'; $w.onReady(function () { wixUsers.onLogin((user) => { let userId = user.id; $w('#userDataset').setFilter(wixData.filter().eq('_id', userId)); $w('#userDataset').onReady(() => { let userData = $w('#userDataset').getCurrentItem(); // Display user information on profile page $w('#profileUserName').text = userData.username; // Check if the user is verified if (userData.verified) { // Display blue checkmark $w('#blueCheckmark').show(); } else { // Hide blue checkmark $w('#blueCheckmark').hide(); } }); }); });