Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Adding tag picker in Asset Finder for Content Fragments

Avatar

Level 2

Hello everyone,

I am trying to add additional fields to the Asset Finder for Content Fragments, so that content authors can search for fragments with specific tags and metadata fields, here:

Screen Shot 2019-06-17 at 8.47.50 am.png

AEM allows me to overlay search facets in the Asset Finder for Images by editing the Page Editor (Image search) form and adding predicates.

For example:

Screen Shot 2019-06-17 at 8.39.25 am.png

I cannot find where to overlay to do the same for Content Fragments. I need to add a tag filter as well as other custom metadata predicates.  Looks like this is not possible to overlay, so what is the best way to do this customisation?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi,

Please check https://forums.adobe.com/thread/2500508

You need to add your custom tag fields at below.

/libs/wcm/core/content/editor/jcr:content/sidepanels/edit/items/tabs/items/assetsTab/items/filterPanel/items/search/items/searchpanel/items/



Arun Patidar

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi,

Please check https://forums.adobe.com/thread/2500508

You need to add your custom tag fields at below.

/libs/wcm/core/content/editor/jcr:content/sidepanels/edit/items/tabs/items/assetsTab/items/filterPanel/items/search/items/searchpanel/items/



Arun Patidar

Avatar

Level 2

Ok, this worked, with some additional config. For me to add both a path picker and a tag selector (to bring it in line with what is there for Images), I had to overlay a few things:

1. Overlay the search panel items to add a new new path picker
Path: /apps/wcm/core/content/editor/jcr:content/sidepanels/edit/items/tabs/items/assetsTab/items/filterPanel/items/search/items/searchpanel/items

2. Overlay the search panel 2 items to add a new path content fragment facet

Path: /apps/wcm/core/content/editor/jcr:content/sidepanels/edit/items/tabs/items/assetsTab/items/filterPanel/items/search/items/searchpanel2/items

3. Overlay the search facets to add a new content fragment tag predicate facet

Path: /conf/global/settings/cq/search/facets/contentfragments

Thanks for your help!