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

Adding a agree to terms text

xellon2

Chevereto Member
Hello. First, I decided to turn off the family safe option checkbox in dashboard. What I want to do now is after you upload, it ask you to select a category. I want to add this text below:

"by using our services, you agree to our terms and conditions" with it linked to my tos page.
 
WOW thanks so much! With this, I can stop annoying you guys every day xD I believe I found what I was looking for. It was the anywhere_upload.php file.

Then I asked google for help on the code. Its still a bit clumsy though. At this point, I'm probably going to take up some basic coding course so I can get things done faster.

If you do me a favor, go to https://www.gummyimages.com, upload something (but don't send), and I put the text string there but I want it to be a little bit higher. I found this code on google:

Code:
<!DOCTYPE html>
<html>
<body>

<p>By using our services, you agree to our <a href="https://gummyimages.com/page/tos">terms of service</a>.</p>

</body>
</html>

I placed it in the anywhere file after linke 135 (after a div). Problem is I want the text to be a little higher. I researched that you have to use CSS which I don't get at all atm. But I have a bit more editing to do and its not right for me to keep asking here imo.

So if you can help me with this last thing, I should be able to handle some basic future adjustments.
 
The quick way
Code:
<p style="margin-bottom:15px">By using our services, you agree to our <a href="https://gummyimages.com/page/tos">terms of service</a>.</p>


https://www.w3schools.com/ is a good place to start when looking for stuff like this.
 
Back
Top