//Adding custom field to search in document types
public new IEnumerable<string> GetBackOfficeDocumentFields()
{
return new List<string>(base.GetBackOfficeDocumentFields())
{ "sku", "price", "productName", "productInformation", "ingress" };
}
Backoffice search not working in the production:
In production, the ExternalIndex is working and returning results using the same search word:
Customization of Backoffice Search works locally but not in prod
Hi,
What have I forgotten to set or configure in order for my customization of backoffice search to work in production? I have implemented it using the guide on https://docs.umbraco.com/umbraco-cms/extending/backoffice-search by adding my custom fields:
Backoffice search not working in the production:
In production, the ExternalIndex is working and returning results using the same search word:
King regards
Ali
Hi,
Because of multilang site, custom fileds with vary by culture ge culture code at the end in index field name.
Changing to this I was able to search in those fields in the particular culture:
is working on a reply...