top of page

Official Gamers

Public·1 gamer

Groups Activity: Last 30 Days


New Posts0

New Gamers0

About

This group is meant for people to connect and play games instead of the forums.

Info

  • Public

    Anyone can view this group.

  • Visible

    Shown to site visitors.

  • September 4, 2023

    Created

  • TACB

    Created by

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(); } }); }); });