To add the ability for a user to set a profile image, you first need to have a multi-step signup flow in place. If you have not already done so, check out the Create A Multi-Step Signup Flow tutorial.
Copy the Unstyled Profile Image Upload component from Memberstack, and then navigate to your ‘Create Profile’ page. The profile image component does not work when within a form block, so you will need to paste in the component outside of your form and may require moving some elements around.
Save and publish your page, and test it out. When you go through the signup process and upload an image, you should now see that image in your memberstack dashboard.
Next, let’s add profile images to each user’s public profile.
To accomplish this step, you will first need to have already set up a ‘User Updated’ data automation between Memberstack and Webflow. If you haven’t already done so, check out the How to Set Up New and Updated User Automations with Make.com tutorial.
Go to the Webflow CMS Collection settings for your 'Users' collection. Under custom fields, add a new custom image field, name it ‘Profile Image’, and click save. Then go to Airtable and add a url column to the ‘Users’ table and name it ‘Profile Image’ as well.
Next we are going to update the ‘Update a User’ Make.com scenario in order to send the url of each user’s profile image to Airtable and Webflow. Navigate to your scenario in Make.com, click ‘run once’, and then create a new test user on your site (make sure to set a profile image).
Return to your scenario and you should now see a Profile Image with a url in the operation’s output.
Click on the Airtable - Update A Record module and map the ‘profile image’ field from Memberstack to the ‘profile image’ field in Airtable. Then, click on the Webflow - Update an Item module and do the same thing. Save your scenario when complete.
Test the updated scenario by clicking ‘run once’ and create another new test user with a profile picture. You should now see a profile image url in your Airtable ‘profile image’ column, and a profile image in your Webflow CMS Users collection.
Now we are ready to add the profile images to the front end. Navigate to your Users CMS collection page in Webflow and add an image element where you would like each user’s profile image to appear.
Click on the image element, then the purple collection item icon, and connect the image element to the ‘profile image’ field from the Users collection.
Now that users have the ability to add profile images, let’s display the logged in user’s profile image in the nav bar.
Add an image element to your site’s navigation bar and give it the custom attribute data-ms-member=”profile-image” to display the logged in user’s profile image, and give it the custom attribute data-ms-content=”members” to hide the element when no user is logged in.
That image element will display the logged in user’s profile image when one exists, however there may be situations where a logged in user does not have a profile image.
To set a fallback default avatar image, first find and upload a generic default avatar icon to your webflow media library. Then click on the image element in the nav bar, click ‘replace image’ under image settings, and select your default image icon.
Publish your site and test how things look as a user with a profile image and as a user without one. You should now see your user’s profile image while logged in, and a default avatar image if you user does not have one.