Resource icon

[XFR] User Albums 1.0.0 b7

No permission to download
Hey everyone, Sorry if this has already been mentioned but is there anyway a watermark can be implemented into the images ?

Also is there a way to insert the "latest images block" into a template location rather than the preset ones ?
 
Would it be possible to create an option for pics in albums to be used as avatar pics like FB?
 
  • Like
Reactions: DRE
Is there a way to add something in the user postbit that says "Unlock Album" with a tool tip hover that says "Unlock your photo album for this user." I know you have custom albums for certain users only but how can you easily add new people?
 
User Albums is a fantastic addon... really enjoying it. Is it possible to make the mobile photo viewing experience better for my users? Ideally, when a mobile user clicks on a photo, it goes full screen with the ability swipe to other photos in the album.
 
  • Like
Reactions: DRE
Is there any way to go in and manually add alt tags to the pictures that have been uploaded for better SEO?
 
Please, is there anyone that has converted from vbulletin albums to this? I'm halfway through the importer and I get this error:



Server error


HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.

I'm trying to continue the import but I get the same error. :(
 
Look at the log files at the server, there you should find the details about the error (e.g. out of memory). One reason could be a defect image.
 
Thanks Walter, I've checked everything, can't seem to find the problem. I also tried deleted the album at which the converter was stopping, same result :(
 
Just installed this and there seems to be a missing phrase. For album type the third choice shows up as "xfr_useralbums_global".
 
Hello
Found an issue with animated Gif:
Thumbnail is not created.
Animated Gif picture indeed is well displayed :)

Screenshot_1.webp
 
Is it possible to disable the overlay, and go straight to "the original location"? Hopefully somebody knows how to do this :)
 
Is it possible to disable the overlay, and go straight to "the original location"? Hopefully somebody knows how to do this :)

Anyone? Seems like it should be pretty easy to do. I was playing in the template, but couldn't quite figure it out.
 
A damn shame the author gave up this brilliant add-on, despite his promises that he will keep up the coding :(
 
@Pepelac Fix profile tab Albums no display thumbnail.

Open XfRu_UserAlbums_EventListener_Template.php

Find:
PHP:
if ($album['thumbnail_width'])
                        {
                            $data = array(
                                'data_id' => $album['data_id'],
                                'file_hash' => $album['file_hash'],
                            );
                            $album['thumbnailUrl'] = $imagesModel->getImageThumbnailUrl($data);
                        }


Add below:
PHP:
elseif($album['image_data_id'])
                        {
                            $data = array(
                                'data_id' => $album['image_data_id'],
                                'file_hash' => $album['image_file_hash'],
                            );
                            $album['thumbnailUrl'] = $imagesModel->getImageThumbnailUrl($data);
                        }

Thanks for great addon :)
 
Last edited:
Back
Top Bottom