• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

[Unofficial] Recents Users Uploaded Images Without DB

Status
Not open for further replies.
Gatses said:
Installed the plugin Recents Uploads. On page larger images:
http://demo.chevereto.com/?v=d7pzQ.png

Is it possible to do that they were in a reduced form?

I intend to create a view list using thumbnails for this mod.

So for now, I could only suggest you to use thumbnails or add a specific width + height.
Also, you could use javascript to dynamically resize the image.
 
Is it possible at this point to do so?:
Display thumbnails, when you click the image opens in the full amount. 🙂
 
Gatses said:
Is it possible at this point to do so?:
Display thumbnails, when you click the image opens in the full amount. 🙂

replace
PHP:
print('<img src="'.absolute_to_url(__CHV_PATH_IMAGES__.$element).'" /><br />');

with
PHP:
print('<a href="'.absolute_to_url(__CHV_PATH_IMAGES__.$element).'"><img src="'.absolute_to_url(__CHV_PATH_THUMBS__.$element).'" /></a><br />');
 
After the substitution can not go to the page:
zrEMZ.png
 
Gatses said:
After the substitution can not go to the page:
zrEMZ.png

PHP:
print('<a href="'.absolute_to_url(__CHV_PATH_IMAGES__.$element).'"><img src="'.absolute_to_url(__CHV_PATH_THUMBS__.$element).'" /></a><br />');
 
Status
Not open for further replies.
Back
Top