• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

[XFR] User Albums

Status
Not open for further replies.
You could use an AutoHotKey script to do it.
http://www.autohotkey.com/forum/topic2633.html Laszlo does it in AHK in two lines !
Here [VxE] does similar stuff ...
http://www.autohotkey.com/forum/post-423229.html
I created a thread about what I'm doing: http://xenforo.com/community/threads/converting-photopost-and-vb4-albums-to-xf-user-albums.22307/

I used to use Texter which is a GUI for autohotkey on my last job but that won't do me any good as I'm transferring exact dates.

Thanks anyway!
 
Can you please fix the permissions system in the next version?

I need friend's list only, member's only, public for all, and private.

I'm missing two options so I have to figure out ways to compromise. This is really inconvenient.
 
Hello!? A fix for this please? This is a serious bug and should be addressed asap.

Every time a user with a long username posts pics, the preview looks like this in forum home:

Skjermbilde 2011-11-02 kl. 14.17.18.webp

It used to be 3 x 3 thumbnails, but now all is messed up :( and that is just because the longer username.
 
Hello!? A fix for this please?
As quickfix you can change the xfr_useralbums_forum_list_image tempalte with this code (or just change comma after the username to <br>)

Code:
<xen:require js="js/xfru/useralbums/opener.js" />
<xen:if is="{$image.firstImage}">
<li class="thumbnailHolder firstImage" title="{xen:phrase xfr_useralbums_image_from_album_x_by_y, 'album={xen:string censor, $image.albumTitle}', 'name={$image.username}'}">
<xen:else />
<li class="thumbnailHolder" title="{xen:phrase xfr_useralbums_image_from_album_x_by_y, 'album={xen:string censor, $image.albumTitle}', 'name={$image.username}'}">
</xen:if>
    <xen:set var="$album.title">{$image.albumTitle}</xen:set>
    <xen:set var="$album.album_id">{$image.album_id}</xen:set>
    <div class="boxModelFixer primaryContent">
        <div class="thumbnail">
            <a href="{xen:link useralbums/view-image, $image}" class="thumbBox ImageboxOpener" data-href="{xen:link 'full:useralbums/view', $album}#image-{$image.image_id}">
                <img src="{$image.thumbnailUrl}" alt="{$image.filename}"/>
            </a>
        </div>
        <div class="infobar">
            <span class="item Tooltip comments" title="{xen:phrase xfr_useralbums_image_comments}">{$image.comment_count}</span>
            <span class="item Tooltip views" title="{xen:phrase xfr_useralbums_image_views}">{$image.view_count}</span>
            <span class="item Tooltip likes" title="{xen:phrase xfr_useralbums_image_likes}">{$image.likes}</span>
            <div class="posterDate muted">
                <a href="{xen:link "full:members", $image}" class="">{$image.username}</a><br />
                <a href="{xen:link "full:useralbums/view-image", $image}" class=""><xen:datetime time="{$image.image_date}" class="faint" /></a>
            </div>
        </div>
    </div>
</li>
 
How do I create an album that can only be viewed by members I follow?

But not by members who are following me only unless I follow them as well.
 
There are 2 files for this add on in the original post. I am using 1.1 beta 4, which file should I use to install this?
 
It would be cool to have a checkbox asking if the user wants to upload to their album as well when posting an attachment in a thread.
 
Status
Not open for further replies.
Top Bottom