Announcement

Collapse
No announcement yet.

Searching in the knowledge database

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Searching in the knowledge database

    Hello

    I have added a multi-enum field to the knowledge base. It is used for keywording.
    Unfortunately,
    I cannot select this field in the Entity Manager under Field Text Search.

    The search for contents of this field only works in one product category/folder.
    This means that my idea of keywording cannot be used properly.

    Does anyone have another idea to find the records of the knowledge database better?

    ​Peter

  • #2
    Hi,
    I use a custom hook to put all the values from an array field to a text field separated by comma "Keyword1, Keyword2, Keyword3"

    Comment


    • eymen-elkum
      eymen-elkum commented
      Editing a comment
      formula is workable as well

  • #3
    Thank you.

    I have no knowledge about hook. I know a bit about formula.
    but with which formula command do I split the array field?​

    Comment


    • #4
      Code:
      auxKeywordsField = array\join(yourMultiEnumField, ' ');

      Comment


      • peterberlin
        peterberlin commented
        Editing a comment
        Thank you very much.
    Working...
    X