• 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

Problem after upgrading 3.2.6

Status
Not open for further replies.

Senja

Chevereto Member
1. add images URls
add images URls.png
Submit window appears: This page asks you to confirm that you want to leave - with the data you entered may not be saved.

2. Deletin image
del_images.png
An error occured. Please rty again later.
Checked problem in firefox 30.0
IE 11 picture removed
 
Last edited:
Add image URLs is confirmed to have issues in 3.2.6 but delete image is working at least in the demo and in localhost. What is your site URL? I can't test just seeing images.

Cheers.
 
The add URL bug will be officially patched in 3.2.7 but if you re-download 3.2.6 it will be already there. If you want to do it at your own do this:

lib/Peafowl/peafowl.js

Replace this:
Code:
    // Prevent modal submit form since we only use the form in the modal to trigger HTML5 validation
    $(document).on("submit", PF.obj.modal.selectors.root + " form", function(){
        if($(this).data("prevent") == "false") return true;
        return;
    });

With this:
Code:
    // Prevent modal submit form since we only use the form in the modal to trigger HTML5 validation
    $(document).on("submit", PF.obj.modal.selectors.root + " form", function(){
        if(typeof $(this).attr("method") !== "undefined") return;
        if($(this).data("prevent") == "false") return true;
        return false;
    });
 
Status
Not open for further replies.
Back
Top