View Member ID in my member or contact list

How can I view the automatic member ID that WIX creates in my members or contact list?

I have a dataset in the members area of my website, so each member can see their unique ID. I am using this as a membership number. However, how can I see this on my contact or members list on my dashboard?

Great question Nicky. From what I’ve seen, there isn’t a way to view this by default on your Wix Dashboard, likely by design, but there is a way for you to set this up without having to go around the world and back.

You can create a new dashboard page for your site, and from there, you can add a Table or Repeater which pulls from a Wix Dataset connected to your Members/PrivateMembersData collection. So you’d be creating your own admin page to do exactly what you’d like it to show - Velo: Working with Dashboard Pages | Help Center | Wix.com.

Fantastic, this will really work for me. Once I have this new dashboard page, how can I bring in all my members to this dashboard page?

They become members by completing a submission for. If I set it up, will all new members automatically be added to this new dashboard?

Hi nicky, here’s a code to help you with that:

import wixLocation from 'wix-location';

$w.onReady(function () {

 let url = wixLocation.url;
 
    $w("#textID").text = url; //Replace with your text ID
    
});

Let me know if this works :blush: