• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

multiple upload

Reezwan

Chevereto Member
i need to way to change this when u do multiple upload...
first
when multiple upload completed, u get short url, and so on. how to add viewer link in it?

second
suppose u upload babyliss.jpg.
when uploading completed u get something like,
short url: http://yourdomain.com/a
viewer link: http://yourdomain.com/image/a

i upload some 40 files at a go, and to find which url is for which image, its too tiresome.

is there anyway to keep it default.
like if u upload babyliss.jpg
and it returns
short url: http://yourdomain.com/babyliss.jpg
viewer link: http://yourdomain.com/image/babyliss.jpg

then when i upload 40 images at a go, i can easy locate which url is for which image
 
when multiple upload completed, u get a list of options such as short url, bb-code, direct link, html etc.
when u select short url, all links short url appear, if u select bb-code all links bb-code appear and so on.
how to add viewer link in this drop down list?

if u r planing to implement new things on chevereto 3.0. then consider this one also.
option on upload: family safe and adult
and also content warning page before displaying adult images
and also if possible, add views per image
 
You can edit the "content/themes/Peafowl/view.php" to display the viewer, when clicking on a thumb. To do that you only need to pass the argument "false" in the function call. On view.php, change this:

PHP:
 <?php show_thumb_bbcode(true); ?>


To this:

PHP:
 <?php show_thumb_bbcode(false); ?>

 
Back
Top