sonnb - XenGallery (XenForo Gallery) [Deleted]

2. It is not available yet but possibility will be available.
3. Video upload will available.
4. It will be implemented in future release.
does it mean XG will have direct video upload feature that host the video locally in our own server and not embedded from other sites
 
I have encountered an issue with privacy permissions. When a user sets an album to "People I Followed" then those who he/she follows can NOT see the album. I have tried all variations on this, tested and double tested, rebuild caches etc.
 
I have encountered an issue with privacy permissions. When a user sets an album to "People I Followed" then those who he/she follows can NOT see the album. I have tried all variations on this, tested and double tested, rebuild caches etc.
It will be fixed in 2.0.0.
Besides video and a better sized album cover- what is new really?
What you see is what you get ;)
 
Is there a workaround? I imported a bunch of albums and those that were visible to Friends only are now set to People I Followed which means that they are not visible at all.
Sure:
Please open: library\sonnb\XenGallery\ControllerPublic\XenGallery.php
Line 270:
PHP:
$albumFetchOptions = array(
            'join' => sonnb_XenGallery_Model_Album::FETCH_USER |
                        sonnb_XenGallery_Model_Album::FETCH_COVER_PHOTO,
            'likeUserId' => $visitor['user_id'],
            'watchUserId' => $visitor['user_id']
        );

Replace by:
PHP:
$albumFetchOptions = array(
            'join' => sonnb_XenGallery_Model_Album::FETCH_USER |
                        sonnb_XenGallery_Model_Album::FETCH_COVER_PHOTO,
            'likeUserId' => $visitor['user_id'],
            'watchUserId' => $visitor['user_id'],
            'followingUserId' => $visitor['user_id']
        );

There are some other places will be updated to fix this case also. However for gallery home, this change is enough.
 
I have a large batch of photos that include EXIF info including dc:description and dc:title, but when I add photos this info isn't automatically pulled into the title and description fields. Can this functionality be added?

I'm including a sample image...
 

Attachments

  • Ford on Bull Run Blackburn's Ford_3996064288_o.webp
    Ford on Bull Run Blackburn's Ford_3996064288_o.webp
    266.4 KB · Views: 6
I have a large batch of photos that include EXIF info including dc:description and dc:title, but when I add photos this info isn't automatically pulled into the title and description fields. Can this functionality be added?

I'm including a sample image...
I know that from the time I was implementing EXIF. Maybe it will be added later.
 
Sure:
Please open: library\sonnb\XenGallery\ControllerPublic\XenGallery.php
Line 270:
PHP:
$albumFetchOptions = array(
            'join' => sonnb_XenGallery_Model_Album::FETCH_USER |
                        sonnb_XenGallery_Model_Album::FETCH_COVER_PHOTO,
            'likeUserId' => $visitor['user_id'],
            'watchUserId' => $visitor['user_id']
        );

Replace by:
PHP:
$albumFetchOptions = array(
            'join' => sonnb_XenGallery_Model_Album::FETCH_USER |
                        sonnb_XenGallery_Model_Album::FETCH_COVER_PHOTO,
            'likeUserId' => $visitor['user_id'],
            'watchUserId' => $visitor['user_id'],
            'followingUserId' => $visitor['user_id']
        );

There are some other places will be updated to fix this case also. However for gallery home, this change is enough.

This seems to make albums visible to People I Followed only from the main gallery page. I need them to be visible from the profile page. Please let me know how this can be fixed.
 
This seems to make albums visible to People I Followed only from the main gallery page. I need them to be visible from the profile page. Please let me know how this can be fixed.
The same for library\sonnb\XenGallery\ControllerPublic\XenGallery\Author.php line 298 and 318
 
The same for library\sonnb\XenGallery\ControllerPublic\XenGallery\Author.php line 298 and 318
I actually already made those changes. People I Followed can still NOT view photos from the profile page. They can view the album cover now, but not the photo inside.
 
I actually already made those changes. People I Followed can still NOT view photos from the profile page. They can view the album cover now, but not the photo inside.
library\sonnb\XenGallery\ControllerPublic\XenGallery\Album.php line 50.
 
Does version 2.0 include an easy and flexible way of adjusting how the preview images on forum frontpage appear? I have a great need to control the appearance, in detail. Or is this up to each user to do, codewise?
 
Does version 2.0 include an easy and flexible way of adjusting how the preview images on forum frontpage appear? I have a great need to control the appearance, in detail. Or is this up to each user to do, codewise?
What is exactly that you need?
 
Back
Top Bottom