• 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.

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