• 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!
 
Back
Top