I know this should be a simple thing to figure out, but I'm having a terrible time "guessing" my way through this simple question!
The default template for the Member Directory module includes these two lines:
<li class="mdTitle"><p><span data-bind="text: Title"></span></p></li>
<li class="mdLocation"><p><span data-bind="text: Location()"></span></p></li>
Instead of the Title and Location (City field contents), I want to display the Street and Phone fields.
When I change either line to "text: Phone", it displays the phone number just fine.
When I change either line to either "text: Street" or "text: Street()", nothing renders from the module at all.
Obviously, "Street" is not recognized and is blowing up the module.
How do I reference the "Street" value in the Template?
Where can I find a list of available Member Directory fields/tokens?
Thanks for your help!