Share
Hi, I have a custom field in MS that adds url from airtable (which is basically a website+cms slug , this will take them to their public profile). I want to add this URL into a text link. So, when user logs in they can use it to see their public profile.
There is no dashboard or member-specific page from MS.
There is no dashboard or member-specific page from MS.
Add as a script in before body closing tag, replacing the link ID and :
var Webflow = Webflow || [];
Webflow.push(function() {
MemberStack.onReady.then(function(member) {
$('#ID-OF-LINK').attr("href", member["profile-link"]);
})
});
var Webflow = Webflow || [];
Webflow.push(function() {
MemberStack.onReady.then(function(member) {
$('#ID-OF-LINK').attr("href", member["profile-link"]);
})
});

· 1 reply