• 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

meta,content how to remove from competitors eyes ?

Status
Not open for further replies.

knova15

💖 Chevereto Fan
Hi

When i view the source code online in the very beginning there is a line i don't know how to hide from my competitors....

<meta name="generator" content="Chevereto 3.5.6">

Any help would be awesome! im not trying it if it has to be there just hide it as its a competiting topic so i need to let them do their homework too 🙂

Thx
 
I can't fully test this at the moment, but I've just taken a very quick look.

Locate this file.

\app\lib\functions.render.php

Then locate this piece of text.

function include_peafowl_head(){
echo '<meta name="generator" content="Chevereto ' . CHV\get_chevereto_version() . '">' . "\n" .
'<link rel="stylesheet" href="' . versionize_src(CHV_URL_PEAFOWL . 'peafowl.css') . '">' . "\n" .

Replace that, with this.

function include_peafowl_head(){
echo '<link rel="stylesheet" href="' . versionize_src(CHV_URL_PEAFOWL . 'peafowl.css') . '">' . "\n" .

Basically just deleting that line.
 
Status
Not open for further replies.
Back
Top