Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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
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.
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;
});