Description
This shortcode displays a list of the files located in an individual contact’s filebox.
Shortcode Examples
The following will display a table with Line #, Filename, Filesize, and Link:
<table>
[memb_list_filebox]
<tr>
<td>%%line%%</td>
<td>%%filebox.filename%%</td>
<td>%%filebox.filesize%%</td>
<td><a href="%%filebox.downloadlink%%">Download</a></td>
</tr>
[/memb_list_filebox]
</table>The following will display only files with PDF in their name, with Line #, Filename, Filesize, and Link:
<table>
[memb_list_filebox filter="pdf"]
<tr>
<td>%%line%%</td>
<td>%%filebox.filename%%</td>
<td>%%filebox.filesize%%</td>
<td><a href="%%filebox.downloadlink%%">Download</a></td>
</tr>
[/memb_list_filebox]
</table>
Shortcode Parameters
contact_id | Not required. The id number of the contact in Infusionsoft. Defaults to the currently logged in user’s Contact Id. |
|---|---|
filter | Text to match the included file’s names to. To include only DOC files, use “doc” as the fillter. |
Template Codes |
Shortcode Attributes
| Conditional | No |
|---|---|
| Nestable | No |
| Accepts formatting | No |
| Capturable | No |