There may be times that you need to deliver specific content unique to each member. MemberMouse has a couple of different options for accomplishing this. The type of member-specific content, whether a simple piece of text or a file, may determine which delivery method you will want to use.
Member-Specific Data
Choose the page you want to display the custom field data on. Then use the
[MM_Member_Data]
SmartTag to output the custom field content specific to the logged in member on the page as follows:[MM_Member_Data name='customField_#']
Make sure to replace the
#
with the actual ID of the custom field to output data for. You can locate the ID by hovering over the name of the custom field in MemberMouse > Developer Tools > Custom Fields.Member-Specific Files
week1-report-2.pdf, week1-report-5.pdf
, week1-report-6.pdf
, etc., where the final number is the member ID. Then on the page you have chosen for the file download, you would create the link as follows:<a href="http://yourdomain.com/member-content/week1-report-[MM_Member_Data name='id'].pdf">Download Your Report</a>
When this code is processed by MemberMouse, the SmartTag will be replaced with the current member's ID. For example, a member with the ID 14588, would have the following link displayed:
<a href="http://yourdomain.com/member-content/week1-report-14588.pdf">Download Your Report</a>
As a result, dynamic download links will be created for member-specific files.