[memb_owner]
Summary
This shortcode is used to display the Infusionsoft owner’s fields. It includes options for formatting or storing the output.
Shortcode Examples
To show first name you would use:
[memb_owner fields=FirstName]
To show first name and last name with one space between them you would use:
[memb_owner fields=FirstName,LastName separator=" "]
User Record Field Examples:
[memb_owner fields=FirstName]
[memb_owner fields=LastName]
[memb_owner fields=Email]
Examples using Text Formatting
[memb_owner fields=firstname txtfmt=strtolower,ucwords]
[memb_owner fields=firstname,lastname txtfmt=strtolower,ucfirst]
[memb_owner fields=firstname,lastname txtfmt=strtolower,ucwords]
[memb_owner fields=FirstName,LastName separator=" " txtfmt=ucfirst]
[memb_owner fields=FirstName,LastName separator=" " txtfmt=sanitize_title]
[memb_owner fields=FirstName,LastName separator=" " txtfmt=sanitize_title,strtoupper]
Shortcode Parameters
capture: Capture the output of the shortcode and route it to a variable for later use. (?)
contact_id: The contact Id of the contact to display the owner information for. (Optional)
date_format: The formatting to use for your date field. You can read more about the date formatting options here.
fields: A comma separated list of fields from the User table. You can find a list of fields here.
owner_id: The ID of the owner record to display the fields from.
separator: The string to use to separate the list of fields when output. The default separator is a single space.
txtfmt: A comma separated list of text processing functions to be used to post process the owner fields. (?)
Shortcode Attributes
Conditional: No (?)
Nestable: No (?)
Accepts formatting: No (?)
Capturable: No (?)
Additional Information
For a full list of standard user fields you can refer to these tables: https://developer.infusionsoft.com/docs/table-schema/.
The User table does not support custom fields.