Choose Cover photo for albums

Geiri

Active member
An option to Allow users to choose a cover photo for there album instead of the 4 thumbnails shown.
I think albums might look better that way.

If there is an option for this already or an addon please let me know.
 
Upvote 10
An option to Allow users to choose a cover photo for there album instead of the 4 thumbnails shown.
I think albums might look better that way.

If there is an option for this already or an addon please let me know.

THIS ^^^^! Please... members all asking to do their own cover art for their albums.
I also wish I could set the album cover. I settled for one or two thumbnails so it's not so cluttered.
You have to edit src/addons/XFMG/Service/Album/ThumbnailGenerator.php

Two thumbnails:
mga2.webp

One thumbnail:
mga1.webp

Find:
Code:
        /** @var \XF\Mvc\Entity\AbstractCollection|\XFMG\Entity\MediaItem[] $media */
        $media = $mediaFinder->fetch(4);
Change $media = $mediaFinder->fetch(4); to $media = $mediaFinder->fetch(2); or $media = $mediaFinder->fetch(1);
Then run admin/Tools/Rebuild Caches/XFMG: Rebuild media thumbnails
Note: The file check will fail the next time it runs because of the edited file.
fce1.webp
 
Last edited:
Back
Top Bottom