Question:
I find it surprisingly hard to get a members date of registration so please show how to do it in a simple way so that the result will look like this on the page: 12 February 2023
Product:
Wix Editor
What have you already tried:
wixData.get(“Members”, memberId)
.then((item) => {
if (item._createdDate === undefined) {
console.log(“not registered”);
} else {
$w(“#registerDate”).text = (item._createdDate);
}
});