Hi,
first of all please take a look at properties of smart search web part and make sure that correct index is selected in the Indexes property.
Then try to use this transformation and search for username administrator. This user should be found if he exists.
<table style="margin-bottom:5px">
<tr>
<td>
<div style="border: solid 1px #eeeeee; width: 90px; height: 90px;">
<img src="<%# GetSearchImageUrl("~/App_Themes/Default/Images/CMSModules/CMS_SmartSearch/no_image.gif",90) %>"
alt="" />
</div>
</td>
<td>
<div style="margin-right: 5px; margin-left: 5px;">
<%-- Search result title --%>
<div>
<a style="font-weight: bold" target="_blank" href='<%# SearchResultUrl(true) %>'>
<%# SearchHighlight(HTMLHelper.HTMLEncode(DataHelper.GetNotEmpty(Eval("Title"), "/")),"<span style=\"font-weight:bold;\">","</span>") %>
</a>
</div>
<%-- Search result content --%>
<div style="margin-top: 5px; width: 590px;">
<%# SearchHighlight(HTMLHelper.HTMLEncode(TextHelper.LimitLength(HttpUtility.HtmlDecode(HTMLHelper.StripTags(GetSearchedContent(DataHelper.GetNotEmpty(Eval("Content"), "")), false, " ")), 280, "...")),"<span style=\"background-color: #FEFF8F\">","</span>") %><br />
</div>
<%-- Relevance, URL, Creattion --%>
<div style="margin-top: 5px;">
<%-- Relevance --%>
<div title="<%# "Relevance: " + Convert.ToInt32(ValidationHelper.GetDouble(Eval("Score"),0.0)*100) + "%" %>"
style="width: 50px; border: solid 1px #aaaaaa; margin-top: 7px; margin-right: 6px;
float: left; color: #0000ff; font-size: 2pt; line-height: 4px; height: 4px;">
<div style='<%# "background-color:#a7d3a7;width:"+ Convert.ToString(Convert.ToInt32((ValidationHelper.GetDouble(Eval("Score"),0.0)/2)*100)) + "px;height:4px;line-height: 4px;"%>'>
</div>
</div>
<%-- URL --%>
<span style="color: #008000">
<%# SearchHighlight(SearchResultUrl(true),"<strong>","</strong>")%>
</span>
<%-- Creation --%>
<span style="color: #888888; font-size: 9pt">
<%# GetDateTimeString(ValidationHelper.GetDateTime(Eval("Created"), DateTimeHelper.ZERO_TIME), true) %>
</span>
</div>
</div>
</td>
</tr>
</table>
Now in case your custom field should not be used in the filter, i.e. for example using syntax:
+mycolumn:somevalue
change the field from Searchable to Content + Tokenized. The same setting as were used for UserName field.
Now you should see the result.
Best regards,
Ivana Tomanickova