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

Remove or auto agree when uploading?

laudenbachm

Chevereto Member
Is there a away to auto check the "I agree..." box or simply have a statement that says by using this site you agreed to...

Streamlined uploading is like a single page shopping cart in my opinion. It simply concerts better and leaves less abandoned uploads.

Thank you for your time!

Mark
Screenshot_2024-02-20-13-18-32-65_df198e732186825c8df26e3c5a10d7cd.jpgthere a way to
 
dashboard/settings/theme

At the bottom where it reads "Custom JS code".

* To check the box on document ready:

Code:
$(document).ready(function() {
    $('#upload-tos').attr('checked', true);
});

* To check the box on document ready (and hide the whole label+input container):

Code:
$(document).ready(function() {
    $('#upload-tos').attr('checked', true).closest('div').css('display', 'none');
});
 
I would just like to add a little note to the conversation that in the European Union the act of having users auto-agree to Terms is a violation of GDPR as it is not considered real consent.

Src: https://www.i-scoop.eu/gdpr/consent-gdpr/ & https://www.i-scoop.eu/wp-content/u...nutshell-source-and-more-info-FOIMan.gif.webp
Thank you for the information on this. I guess I'll need to do some checking with an attorney to see how this applies to a business operated outside the EU but with users from the EU.

Have a great day!

Mark
 
dashboard/settings/theme

At the bottom where it reads "Custom JS code".

* To check the box on document ready:

Code:
$(document).ready(function() {
    $('#upload-tos').attr('checked', true);
});

* To check the box on document ready (and hide the whole label+input container):

Code:
$(document).ready(function() {
    $('#upload-tos').attr('checked', true).closest('div').css('display', 'none');
});
Thank you so much for this.

One follow up question I have. If I wanted to edit the actual text "I agree to the terms and privacy policy" where would I do this at?

1709687919083.png

Thanks again @Rodolfo!
 
dashboard/settings/theme

At the bottom where it reads "Custom JS code".

* To check the box on document ready:

Code:
$(document).ready(function() {
    $('#upload-tos').attr('checked', true);
});

* To check the box on document ready (and hide the whole label+input container):

Code:
$(document).ready(function() {
    $('#upload-tos').attr('checked', true).closest('div').css('display', 'none');
});


Hello Rodolfo. I am using version 4.2.3 Regio.

This code worked in previous versions but it does not work in this version.

Can you help me? I do not want to use the warning box. I am sure I placed the codes correctly, but it still asks for confirmation. thanks @Rodolfo
 
and one more critical question. in page analysis, bing webmaster, google and yandex see the meta description of many pages, for example /lang=es or /lang=fr homepages and all of them, as duplicate meta descriptions. don't we have the opportunity to change this from the language file? or with another method. can you show an example.. i searched the forum but couldn't find it.

google ranking is very effective because :/
 
Thank you for reaching out @piyasa.

Since Chevereto v4.2.0, we've updated how event handling works, we got rid of the unload event handling and this particular code of the modification relies on that.

You'll need to use this code:

Code:
document.addEventListener("DOMContentLoaded", function() {
    $('#upload-tos').attr('checked', true);
})

Or this:

Code:
document.addEventListener("DOMContentLoaded", function() {
    $('#upload-tos').attr('checked', true).closest('div').css('display', 'none');
})
 
as duplicate meta descriptions
The language parameter in Chevereto only affects the user interface elements, not the content itself.

Starting from version 4.2.0, all language-specific pages include a canonical link to their non-language URL counterparts. This implementation helps search engines understand that these pages are variations of the same content rather than unique pages in different languages.
 
Thank you for reaching out @piyasa.

Since Chevereto v4.2.0, we've updated how event handling works, we got rid of the unload event handling and this particular code of the modification relies on that.

You'll need to use this code:

Code:
document.addEventListener("DOMContentLoaded", function() {
    $('#upload-tos').attr('checked', true);
})

Or this:

Code:
document.addEventListener("DOMContentLoaded", function() {
    $('#upload-tos').attr('checked', true).closest('div').css('display', 'none');
})


Yes, this worked.. thank you very much.

I didn't want to open an additional topic. Because I came across this topic when I searched the forum.
 
Is there a away to auto check the "I agree..." box or simply have a statement that says by using this site you agreed to...

Streamlined uploading is like a single page shopping cart in my opinion. It simply concerts better and leaves less abandoned uploads.

Thank you for your time!

Mark
View attachment 5702there a way to
For legal purposes, you'd really this to be verified by the user countless times to cover yourself from liability.
 
Back
Top