Related Pages for Site with Multiple Blogs

New to grav, and building a site with multiple blog collection pages. I have successfully installed/configured the related pages plugin however the filter specification restricts the returned page values to other child pages of the same parent directory. This does not precisely match my functional requirement (Cross-collection page linking). The explicit_pages: setting is a nice feature that allows me to link to posts in other collections, but it is a one-way street (meaning while I can link A-> B, I cannot link B back to A.

I my case I have news, projects, and team member collections. I’d like to link across all collections, but you can see how I might want to link projects to team member profiles and vice versa

I am wondering if anyone has any specific strategies/methods for linking related pages across collections.

  1. Is there a wild card option of the filter: @page: [target_dir] setting, one that effectively indicates inclusion of any page anywhere on the site.

  2. Has anyone tried renaming and installing the relatedpages plugin multiple times, with each configured for a separate page collection (and using the explicit page feature for cross-collection page linking).

  3. Has anyone tried to fork the master branch and custom configure for cross-collection linking?

  4. One possible option I have considered is merging all items into a single collection and leveraging the taxonomy and manual site configuration to create the appearance of separate collections, however this method introduces some other usability and navigation/UI issues I would rather avoid.

I am inclined to think that 1. is simply not a current feature, and 2. is a lighter lift than 3. Has anyone else tried any of these? Others? What is your recommended approach?

So, I am answering my own question here, but identified a simple, sufficient solution already accounted for in the plugin.

  1. Modify that relatedpages.yaml file (line 11)
    `

page_in_filter: false

`
While the plugin will only dynamically rate page suitability and link items from a single collection, items from external collections can be manually linked. Further the disabling of the page_in_filter restriction allowed for the widget to display and function on item pages in external collections (linking back to the primary collection via page scoring, and elsewhere via manual entry of the explicit_page specification in the front matter).

This is was a critical feature I had not fully leverage in my initial go 'round.