Back to Content Plus Support

webxmedia
webxmedia

Hi,

Can you advise how I display the attachments in my partial. I've tried a number of variations (some below) but none appear to work. Any help would be appreciated. Thanks.

{{ post.attachments.image[1]|media }}

{{ post.attachments.image[1].filename|media }}

Last updated

webxmedia
webxmedia

Any help appreciated, I'm new to October CMS and I see this plugin has been used across 14 projects. So if anyone has used the attachments function and knows how to output the list of attachments in the portfolio list partial I'd be grateful for any advice. Many Thanks.

Have reached out to plugin author, but waiting...

gergo85
gergo85

Hi,

List of attachment images:

<div id="attr-images">
{% if post.images %}
    {% for item in post.images %}
    <div class="attr-image">
        <a href="{{ item.img_path|media }}">{{ item.img_name }}</a>
    </div>
    {% endfor %}
{% endif %}
</div>

List of attachment files:

<div id="attr-files">
{% if post.files %}
    {% for item in post.files %}
    <div class="attr-file">
        <a href="{{ item.file_path|media }}">{{ item.file_name }}</a>
    </div>
    {% endfor %}
{% endif %}
</div>
webxmedia
webxmedia

Gergo85 - Thank you! appreciate the help.

1-4 of 4