• 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
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

Re-enter to listing viewer mode (slideshow) at image detail page

EugeneB

Chevereto Member
How do we customize the image detail page to allow re-entering to listing viewer mode by clicking on the image. (instead of zooming the photo now)

Example - https://demo.chevereto.com/i/ryE - click on the image to load the listing viewer mode.

what file should we customize and what should be change? thank you.
 
HI Rodolfo,

Thank you for your reply, may i know which of the files and changes needed? or anyone could advise and help with the customization.

Regards,
Eugene
 
Dashbard > Settings > Theme

Custom JS:

JavaScript:
$(function() {
    $(document).on("click", CHV.obj.image_viewer.container, function(e) {
        e.preventDefault();
        e.stopPropagation();
        window.history.back();
        return;
    });
});

Note that it will return to listing, not listing viewer.
 
Last edited:
Thanks Rodolfo, it works returning to the listing. is that possible returning back the listing viewer where the left?

as a user case, the user browsing images on listing viewer and accidentally clicked on the images / (they wanted to download/share the photo) and loaded the image detail page, the users unable to return back to the where they are in listing viewer

1. they have to click on the album to return to the listing
2. browse to the image where they left
3. click on the image to return to the listing viewer.

was thinking the idea solution where

1. click on the image, to return back the listing viewer where they left. (as a UX point of view, i think the user will click on the image to return back the listing view if they exit the listing viewer)
 
Back
Top