• 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

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