• 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

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