• 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

How to add some content in Homepage ?

LouisMaitreau

Chevereto Member
Hi Rodolfo,

Is there a way to add some content in the home page ?

Maybe there's a file like "homepage.php" ?

I would like to add 400 words so it's not just one or two sentences.

Thanks for your help,

Cheers 🙂
 
If you want to add content/edit the homepage you can find index.php in /app/themes/Peafowl/views/

To make your edits persistent (updates overwrite files in the core path) copy the index.php or whatever file you edit from views to /app/themes/Peafowl/overrides/views/
 
Hi Tomsit,

Thanks for you answer. Yeah It was logic, index.php, I don't know why i didn't tought about it. Now I have to learn how to add some HTML in a PHP file... WordPress make lazy people !

Ok nice, thanks for the tip ! It will be very usefull 🙂

Cheers !
 
Hi Tomsit / Rodolfo,

I tried to add some content in the homepage but I have some troubles.

If you take a look at heberger-image.fr You'll see that the scroll bar take some time to appears. Is it normal ?

How can I fix that ?

Thanks for your help.
 
If you take a look at heberger-image.fr You'll see that the scroll bar take some time to appears. Is it normal ?
Yes, it was made for 100% fixed height (relative to window). You need to override the CSS styles used to fix that.

CSS:
.js body.landing {
    height: auto !important;
}

The whole thing works with CSS toggles, you have to use your web browser inspector to detect the stuff.
 
Hi Rodolfo,

Unfortunatly this code doesn't help me BUT it give me some clues to know where I had to look for my solution.

In the style.css file, line 36 : "overflow: hidden;", I just erased this line.

Work Perfectly now.

Thanks for your help 🙂
 
Back
Top