As the search bot has only the "limit" as parameter to exclude elements you have to modify the bot source code. Here is an example on how to do it for the sections.file: mambots/search/sections.searchbot.phpI write a string of comma separated section ids we want to exclude:$exclude = '1,4,7,12';I will now add a new line inside the query (with green the new line I just added): . "\n AND a.published = '1'" . "\n AND a.id NOT IN (".$exclude .")" . "\n AND a.access IN (".$my->allowed.")"Do the same for the other search bots.That's it!