I simply want to add a profile field to be displayed in the member "card". There is a field called "Company" that I would like shown after the field "Title".
The original code is this:
<li class="mdTitle"><p><span data-bind="text: Title"></span></p></li>
<li class="mdLocation"><p><span data-bind="text: Location()"></span></p></li>
I want to add like this:
<li class="mdTitle"><p><span data-bind="text: Title"></span></p></li>
<li class="mdCompany"><p><span data-bind="text: Company"></span></p></li>
<li class="mdLocation"><p><span data-bind="text: Location()"></span></p></li>
When I do this, it just comes up blank. I also found this post and even copied his code for the "Website" field exactly and it doesn't work either: http://www.dnnsoftware.com/Resources/Blogs/EntryId/3392/Adding-a-website-link-to-the-Member-Profile-and-Directory-in-DotNetNuke-6-2.aspx
Obviously I don't know how the syntax works for this but a secondary question is about this line: <li class="mdLocation"><p><span data-bind="text: Location()"></span></p></li>
Here it says "Location" yet the profile field is actually "City". Perhaps this is why Company isn't working for me...
Can someone please tell me the proper code to simply add the Company field to a card in the Member Directory module.
Thank you!