Code Access to Member Custom Fields

I actully figured it out. It appears that the actual usage is now much more straightforward. Apparently the API has been updated without the documentation changing :grimacing:

instead of the previous:
$w(‘#text15’).text = member.contactDetails.customFields[“customfields_contact_company”].value
you can now just use:
$w(‘#text15’).text = member.contactDetails.company

Maybe this is because I declared the option

currentMember.getMember({ fieldsets: [ 'FULL' ] })




3 Likes