...
Add a new Global Property named "layout.name.template" if it already exists, update it's value to the your custom xml template:
Code Block <org.openmrs.layout.name.NameTemplate> <codeName>customXmlTemplate</codeName> <displayName>Custom Name Format</displayName> <nameMappings class="properties"> <property name="prefix" value="PersonName.prefix"/> <property name="givenName" value="PersonName.givenName"/> <property name="familyName" value="PersonName.familyName"/> </nameMappings> <sizeMappings class="properties"> <property name="prefix" value="5"/> <property name="givenName" value="30"/> <property name="familyName" value="25"/> </sizeMappings> <lineByLineFormat> <string>prefix</string> <string>givenName</string> <string>familyName</string> </lineByLineFormat> <requiredElements> <string>givenName</string> <string>familyName</string> </requiredElements> </org.openmrs.layout.name.NameTemplate>
- Change the nameMappings, sizeMappings, and lineByLineFormat elements however you like. Restart Tomcat to use the new name layout.
- Update the layout.name.format Global Property to the custom template's codeName so that it is chosen as the active template. Restart Tomcat to use the new name layout.
e.g. if you don't want to show prefix, you delete the lineByLineFormat line: <string>prefix</string>
...