Always Show/Insert every image as full size

CRDeveloper

Member
Hello, I've been setting up an install that has a database imported from vb, I like to display images as Full Size but I cant find the option to Always Show/Insert every image as full size even if the post is old or new.

Is there an option to always have full sized images in post by default?

I don't have problems with bandwidth or disk space and members now that they need a least 512kb connections to surf my website as a requirement.
 
If you wanted to update all exisiting posts, then I suppose you could run an SQL query to replace [attach] with [attach=full].

That wouldn't help with new posts though.
 
This should do it:

Code:
UPDATE xf_post SET message = REPLACE(message,'[ATTACH]','[ATTACH=full]')

Make sure you take a backup first though, just in case.
 
I would like to see an option to exclude the posting of images as thumbnails. We don't want them on the forum. And what's worse, by default images get posted as thumbnails! On a photo-based forum, this sucks.

So now we have to go chasing after every thumbnail that's posted and/or educate the forum users, which is a royal pain.
 
Top Bottom