XF 2.1 attachments like vbulletin

yyyuur

Member
Hello! I migrated from vbulletin to xenforo, and i have question about attachment!

How i can change style for attachments?

Now it's look like this

3.png

But i need look like this

1.png

p/s sorry for my english!
 
Last edited:
Last edited:
This would result in something similar. Can always adjust the padding/other values to your liking:

Place in extra.less
Code:
.attachmentList
{
    .xf-minorBlockContent();
    display: block;
    padding: @xf-paddingMedium @xf-paddingLarge;
    .attachment
    {
        display: block;
        width: auto;
        background-color: transparent;
        border-width: 0;
        padding: 5px 0;
        margin: 0;
        > div { display: inline-block; }
        i { width: 24px; text-align: center; }
        i:before { font-size: 22px; }
        .attachment-icon.attachment-icon--img img { max-height: 24px; }
        .attachment-name { margin-top: 0; }
        &:first-of-type { padding-top: 0; }
        &:last-of-type { padding-bottom: 0; }
    }
}


Result is:
Screenshot_3.webp
 
This would result in something similar. Can always adjust the padding/other values to your liking:

Place in extra.less
Code:
.attachmentList
{
    .xf-minorBlockContent();
    display: block;
    padding: @xf-paddingMedium @xf-paddingLarge;
    .attachment
    {
        display: block;
        width: auto;
        background-color: transparent;
        border-width: 0;
        padding: 5px 0;
        margin: 0;
        > div { display: inline-block; }
        i { width: 24px; text-align: center; }
        i:before { font-size: 22px; }
        .attachment-icon.attachment-icon--img img { max-height: 24px; }
        .attachment-name { margin-top: 0; }
        &:first-of-type { padding-top: 0; }
        &:last-of-type { padding-bottom: 0; }
    }
}


Result is:
View attachment 218795

Nice work. :)
 
Wow, thanks Russ, that is amazing. Thanks very much!
vB did something else that is quite subtle - it displayed image attachments as larger thumbnails and anything else as the above style of list. Of course your clever code displays everything as very small thumbnails. Any thoughts on how the image thumbnails might be displayed in a slightly larger size than other files?
 
Hi @Russ --

Thanks for doing this -- it looks good. One question though -- it seems to "break" the light-box functionality, where you can scroll between multiple images in a single screen. As I added the code, it displays per your post above, but when you click on an image, it displays singly in a new window.

Thoughts?
 
Hi @Russ --

Thanks for doing this -- it looks good. One question though -- it seems to "break" the light-box functionality, where you can scroll between multiple images in a single screen. As I added the code, it displays per your post above, but when you click on an image, it displays singly in a new window.

Thoughts?
It's actually how XF handles it, if you click the icon it works with the lightbox, name it'll open in a new window. To change that, you'll need to edit the template: attachment_macros

Find (line 18):
Code:
<a href="{{ link('attachments', $attachment) }}" target="_blank" title="{$attachment.filename}">{$attachment.filename}</a>

Replace with:

Code:
            <xf:if is="$attachment.has_thumbnail">
                <a href="{{ link('attachments', $attachment) }}" class="{{ $canView ? 'js-lbImage' : '' }}" target="_blank" title="{$attachment.filename}">{$attachment.filename}</a>
                <xf:else />
                <a href="{{ link('attachments', $attachment) }}" target="_blank" title="{$attachment.filename}">{$attachment.filename}</a>
            </xf:if>

I think it works :)
 
Well - that is certainly an interesting result:)

It did exactly the same whether clicking on the thumbnail or the file name - both of them initiated the lightbox view with arrows. It appears to work quite well where there was only one post in a thread with images as attachments. However, you will see below that it also inserted some strange "blank" thumbnails after each image - which actually display as a duplicate of the previous image.

In addition, if there were more images stored in other posts within the same thread, it picked those up too.
All of this was was irrelevant whether the images are inserted within the text, or as attachments below.

Here are some screen shots.
1. Showing the first post in a thread with only four images:
Screen Shot 2020-02-24 at 16.25.09.webp

2. Showing how this displays when either the thumbnail or the file name is clicked:
Screen Shot 2020-02-24 at 16.25.34.webp
3. Now how it appears when the second (black) thumbnail is clicked:
Screen Shot 2020-02-24 at 16.25.46.webp
you notice it is the same image, but the second thumbnail is highlighted.

4. Now a thread which contains several posts, three of the posts with images as attachments within the text.
Here's a screen grab of part of the oldest post with its thumbnails shown
Screen Shot 2020-02-24 at 16.27.51.webp
next another post (in the same thread) with more thumbnails:
Screen Shot 2020-02-24 at 16.28.55.webp
and finally a third post in that same thread with more thumbnails (posted by a different person)

Screen Shot 2020-02-24 at 16.29.12.webp

5. When I click on one of the thumbnails in the oldest post, this is how the lightbox looks - note it has picked up all the above thumbnails from all three posts.
Screen Shot 2020-02-24 at 16.28.02.webp
when I click through the thumbs, eventually it reaches some where the duplication happens again (with black thumbnail):

Screen Shot 2020-02-24 at 16.28.34.webp

Thoughts?
Regards and thanks,
Mike
 

Attachments

  • Screen Shot 2020-02-24 at 16.29.12.webp
    Screen Shot 2020-02-24 at 16.29.12.webp
    52.2 KB · Views: 24
I'd undo my last template edit, probably requires an image inside the link with the lightbox class. Not sure of a workaround on that one, if you notice the attachment you left "un-inserted" it's the same thing, name opens in a new window with the thumbnail as the lightbox.
 
If you wanted to create a different look for attachments vs images... this appears to work.

The result is something like this:

Screenshot_2.png
Template:" message_macros"

Find:

Code:
<xf:macro name="attachments" arg-attachments="!" arg-message="!" arg-canView="!">
    <xf:if contentcheck="true">
        <xf:css src="attachments.less" />
        <section class="message-attachments">
            <h4 class="block-textHeader">{{ phrase('attachments') }}</h4>
            <ul class="attachmentList">
                <xf:contentcheck>
                    <xf:foreach loop="$attachments" value="$attachment" if="!$message.isAttachmentEmbedded($attachment)">
                        <xf:macro template="attachment_macros" name="attachment_list_item"
                            arg-attachment="{$attachment}"
                            arg-canView="{$canView}" />
                    </xf:foreach>
                </xf:contentcheck>
            </ul>
        </section>
    </xf:if>
</xf:macro>

Replace with:

Code:
<xf:macro name="attachments" arg-attachments="!" arg-message="!" arg-canView="!">
    <xf:if contentcheck="true">
        <xf:css src="attachments.less" />
        <section class="message-attachments">
            <h4 class="block-textHeader">{{ phrase('attachments') }}</h4>
            <xf:contentcheck>
            <xf:if contentcheck="true">
            <ul class="attachmentList">
                <xf:contentcheck>
                    <xf:foreach loop="$attachments" value="$attachment" if="!$message.isAttachmentEmbedded($attachment) AND $attachment.has_thumbnail">
                        <xf:macro template="attachment_macros" name="attachment_list_item"
                            arg-attachment="{$attachment}"
                            arg-canView="{$canView}" />
                    </xf:foreach>
                </xf:contentcheck>
            </ul>
            </xf:if>
           
            <xf:if contentcheck="true">
            <ul class="attachmentList attachmentListCustom">
                <xf:contentcheck>
                    <xf:foreach loop="$attachments" value="$attachment" if="!$message.isAttachmentEmbedded($attachment) AND !$attachment.has_thumbnail">
                        <xf:macro template="attachment_macros" name="attachment_list_item"
                            arg-attachment="{$attachment}"
                            arg-canView="{$canView}" />
                    </xf:foreach>
                </xf:contentcheck>
            </ul>
            </xf:if>
           
            </xf:contentcheck>
        </section>
    </xf:if>
</xf:macro>

Then the CSS:

Code:
.attachmentList.attachmentListCustom
{
    .xf-minorBlockContent();
    display: block;
    padding: @xf-paddingMedium @xf-paddingLarge;
    margin-top: @xf-elementSpacer;
    .attachment
    {
        display: block;
        width: auto;
        background-color: transparent;
        border-width: 0;
        padding: 5px 0;
        margin: 0;
        > div { display: inline-block; }
        i { width: 24px; text-align: center; }
        i:before { font-size: 22px; }
        .attachment-icon.attachment-icon--img img { max-height: 24px; }
        .attachment-name { margin-top: 0; }
        &:first-of-type { padding-top: 0; }
        &:last-of-type { padding-bottom: 0; }
    }
}
 
Hi Russ,
Regarding your latest suggestion - that appearance looks great, indeed that is exactly what I would like it to look like!
You mention:

Then the CSS ....

Where will I find that - is that in a template? Which one?

Regards and thanks,
Mike
 
Great, I'll remove your previous mod in extra.less and replace it with the new code as above (as well as doing the mod in the template " message_macros") and let you know how I get on:)

many thanks,
Mike
 
Wow Russ, that's a huge success, superb.

And I've now discovered that XF2's lightbox picks up all of the images in a thread when one click's on any image in one post!
So that was nothing to do with your mods! - A red herring!

So, I'm now very happy and relieved - very many thanks!
Regards,
Mike
 
Top Bottom