-
-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Docs] Add "Managing Recommendations" Guide (#2463)
- Loading branch information
1 parent
ac0cc39
commit 4f9c3e1
Showing
7 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Managing Recommendations | ||
|
||
The Recommendations Hub allows you granular control over which collections appear on your home screen, the home screen of other users, and the Recommended tab of any given library. | ||
|
||
You can use this to disable Plex's default recommendations (such as "Recently Added in Movies") and replace them with any of your favorite Kometa Collections. | ||
|
||
|
||
## Getting Started | ||
|
||
The Recommendations tab is accessed by going to `Settings > Server > Manage > Libraries` within Plex. You can then press the "Manage Recommendations" button against any of your libraries to view the current configuration. | ||
|
||
![hub1.gif](images/hub1.gif) | ||
|
||
For the purpose of this guide we will disable **all** enabled recommendations. | ||
|
||
![hub2.png](images/hub2.png) | ||
|
||
In order for a Kometa collection to appear as a Row in the Manage Recommendations section, it must have one of the `visible_home`/`visible_shared`/`visible_library` attributes set to `true`, this can be done in your Collection definition or via a template variable for Defaults files. You can also set these visibility options within the Plex UI, you can read [Plex's guidance](https://support.plex.tv/articles/manage-recommendations/) on how to do this. | ||
|
||
Here is an example Collection definition setting all three `visible_*` attributes: | ||
|
||
```yaml | ||
collections: | ||
Test: | ||
plex_all: true | ||
visible_home: true | ||
visible_shared: true | ||
visible_library: true | ||
``` | ||
And an example Defaults file setting the same attributes: | ||
```yaml | ||
libraries: | ||
Movie Recommendations: | ||
collection_files: | ||
- default: imdb | ||
template_variables: | ||
visible_home: true | ||
visible_shared: true | ||
visible_library: true | ||
``` | ||
The results are: | ||
![hub3.png](images/hub3.png) | ||
And if I visit my Plex homepage: | ||
![hub4.png](images/hub4.png) | ||
Collections will be added in the order that Kometa processes them, but you can reorganize them by drag-and-dropping each Row using the tree-line icon. | ||
![hub5.gif](images/hub5.gif) | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters