Copy link to clipboard
Copied
Hi,
Once we take the output from Robohelp (Classic 2019), in the search result, it displays filename as well.
Is there a way to exclude the filename in the search result?
Copy link to clipboard
Copied
I seem to recall discussions about this before, but I can't recall what the outcome of them was. Are you all patched up? Have you tested with other layouts or the sample project?
Copy link to clipboard
Copied
For RH2019 Classic, you should be able to edit the css file for the screen layout.
In the Output pod, expand your screen layout, right-click on the layout.css and select Edit With > HTML Editor (don't try to use the css editor). Search for 'div.wSearchURL'.
Change this line:
div.searchresults .wSearchResultItem div.wSearchURL { margin-top: .5em; font-size: .75em; word-wrap: break-word; }
to:
div.searchresults .wSearchResultItem div.wSearchURL { display: none; }
I think that should be all you need.