← All Scripts

#51 - Display Member Metadata v0.2

Zeigen Sie die Metadaten der Mitglieder dynamisch auf Ihrer Website an.

Need help with this MemberScript?

Alle Memberstack-Kunden können im 2.0 Slack um Unterstützung bitten. Bitte beachten Sie, dass dies keine offiziellen Funktionen sind und der Support nicht garantiert werden kann.

View demo

<!-- 💙 MEMBERSCRIPT #51 v0.2 💙 DISPLAY MEMBER METADATA -->
<script>
  function replaceTextWithMetadata(metadata) {
    var els = Array.from(document.querySelectorAll('[ms-code-member-meta]'));
    els.forEach((el) => {
      const key = el.getAttribute('ms-code-member-meta');
      const value = metadata[key];
      if (value !== undefined) {
        el.innerHTML = value;
        el.value = value;
        el.src = value;
      }
    });
  }

  const memberstack = window.$memberstackDom;
  memberstack.getCurrentMember()
    .then(({ data: member }) => {
      if (member && member.metaData) {
        replaceTextWithMetadata(member.metaData);
      }
    })
    .catch((error) => {
      console.error('Error retrieving member data:', error);
    });
</script>
Beschreibung
Attribut
Meta | Display Metadata
Zeigen Sie die Metadaten der Mitglieder dynamisch auf Ihrer Website an.
metadata, key value, etc.
ms-code-member-meta
Your_Metadata_Key
Your_Metadata_Key

v0.2 - Fixed "undefined" issue

With this updated code, the script will check if the metadata value is undefined before updating the element's content. If it is undefined, the element will not be modified.

Please replace the previous script with this updated version to achieve the desired behavior.

This MemberScript allows you to display member metadata dynamically on your website. Follow these steps to get started:

1. Paste the script before the closing </body> tag in your site's global scripts.

2. Add the ms-code-member-meta="your metadata key" attribute to any <div>, <span>, or text element where you want to display the corresponding member metadata.

For example, if you have a <div> element where you want to display the member's "name" metadata, you can use:
<div ms-code-member-meta="name"></div>

Replace "name" with the actual key of the metadata you want to display.

The specified elements with the ms-code-member-meta attribute will be dynamically replaced with the corresponding metadata values from the current member.

Creating the Make.com Scenario

1. Download the JSON blueprint below to get stated.

2. Navigate to Make.com and Create a New Scenario...

3. Click the small box with 3 dots and then Import Blueprint...

4. Upload your file and voila! You're ready to link your own accounts.