Hi,
You can filter out some parts of a webpage if you insert a noindex to a DIV class, so Adobe is not indexing the content of that portion.
Menu item: Settings - Filtering - Filtering script
Here you can insert a small Perl script that is run for each page you are crawling. What it does is to search-replace a DIV class and insert a noindex to the class.
undef $/;
my $doc = <>;
$doc =~ s{<div class="top-bar">}{<div class="top-bar noindex">}is;
print $doc;
The trick I read here:
https://stackoverflow.com/questions/25630482/adobe-searchpromote-non-standard-noindex-tag