I'm looking for suggestions please on how I can provide a feature for our editors to create and manage a list of keywords (strings) in the back office. The list is to hold our most commonly searched keywords on our website which they will update regularly based on our google analytics data.
The keywords will not be published on a page. Instead I need to be able to reference the list so I can integrate the keywords into a typeahead feature on our search input box. I have this piece working but I need to get to the list of keywords.
Another simple solution is just to use a textbox and ask them to comma-delimit the keywords and then you can use String.Split(',', value) to get the list.
Back office Keyword List Tool
Hi,
I'm looking for suggestions please on how I can provide a feature for our editors to create and manage a list of keywords (strings) in the back office. The list is to hold our most commonly searched keywords on our website which they will update regularly based on our google analytics data.
The keywords will not be published on a page. Instead I need to be able to reference the list so I can integrate the keywords into a typeahead feature on our search input box. I have this piece working but I need to get to the list of keywords.
Thanks in advance Jonny
Sounds like you need to use the built-in Multiple Textbox property editor:
https://our.umbraco.com/Documentation/Getting-Started/Backoffice/Property-Editors/Built-in-Property-Editors/Multiple-Textbox
Another simple solution is just to use a textbox and ask them to comma-delimit the keywords and then you can use
String.Split(',', value)
to get the list.Thank you Dan!
is working on a reply...