Search Results Display Settings
The following shows the themeable properties of the searchresults.aspx page in mojoPortal content management system as of version 2.3.9.5 with their default values.
<portal:SearchResultsDisplaySettings runat="server"
ItemHeadingElement="h3"
ShowAuthor="false"
AuthorFormat=""
ShowCreatedDate="false"
CreatedFormat=""
ShowLastModDate="false"
ModifiedFormat=""
ShowModifiedDateFilters="false"
ShowFeatureFilter="true"
/>
AuthorFormat is a format string, if not specified it comes from a resource file that can be localized per language but it could be set in display settings to customize it. It must contain {0} which will be replaced by the author name or an error will happen.
The default English version is as follows:
<span class='s-item s-author'>Author: {0}</span>
Simlarly CreatedFormat and ModifiedFormat if specified must contain {0} which will be replaced by the actual date.
<span class='s-item s-modified'>Last Updated: {0}</span>
Created by Joe Audette on Feb 13, 2013