Needs review
Project:
Search Exclude (Node)
Version:
3.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
23 Feb 2023 at 13:34 UTC
Updated:
1 Mar 2025 at 02:01 UTC
Jump to comment: Most recent
Comments
Comment #2
trackleft2That is because of the way that module works, https://git.drupalcode.org/project/search_current_language/-/blob/1.0.x/...
The tag that module uses is
search_node_searchWhile the tag this module uses is something else, probably something like
search_search_exclude_node_searchWhich is just the plugin idsearch.search_exclude_node_searchso you would need to update that module to add the new tag.See #3006611: Language filter on search form does not contribute to filtered results. for another example
Comment #3
trackleft2Also I've created a new issue over there: #3507577: Support additional search page plugins.
Comment #4
trackleft2Comment #6
trackleft2The PHPUnit test in the Merge Request requires the composer.json addition from #3507529: Composer.json file missing. and the added dev dependency.
Additionally, at the time of writing this comment, this PHPUnit test requires the merged commit in this issue #3507577: Support additional search page plugins. (available in the dev release included in the require-dev section of composer.json in the merge request attached to this issue.)
Thanks.