sf_search-term-config
This bundle contains configuration to control whether wildcard or phrase search should be enabled.
Configuration
Property Name | Type | Description |
---|---|---|
enableWildcards |
Boolean | Determines if a wildcard search should be supported. Per default this is enabled. Set this property to false to disable wildcard search. After that the characters * and ? will be escaped in Solr query. |
enablePhrases |
Boolean | Determines if a phrase search should be supported. Per default this is enabled. Set this property to false to disable phrase search. After that the character " will be escaped in Solr query. |
You can configure it as follows:
"sf_search-term-config": {
"Config": {
"enablePhrases": true,
"enableWildcards": true
}
}
Disabling the info button
The info button that is displayed on the right hand side of the search field can be disabled by removing the sf_search-hints
bundle from the app. Add the following snippet to the load
section of your app.json
file:
{
"load": {
"skipBundles": [
"sf_search-hints"
]
}
}