Images using lower resolution

kingston

Well-known member
I am trying to figure out why an image used for an add-on is using a lower resolution (possibly thumbnail) version.

The image is uploaded to a post, but when used elsewhere for the add-on it is way worse resolution. Is this done by default with images uploaded to Xenforo?
 
Which add-on?

It's difficult to try and guess the issue without more details.

Sorry I think I found the cause. It's a custom one. The addon is using the thumbnails of uploaded images. So the source for the image is $item.thumbnailURL

What is the URL for the actual image?

Thank you for your patience in helping me with my newbness
 
Which add-on?

It's difficult to try and guess the issue without more details.



Code:
<img src="{$item.thumbnailUrl}" alt="{$item.filename}" class="Thumbfeatured" data-src="{$item.filename}">
I dont want to use the thumbnail. So what do I change the SRC= to? Thanks again for the help!
 
Top Bottom