• 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

How To Disable "Share" Button

figment

Chevereto Noob
Hello,

Is there a way to disable the "share" button to the right of an uploaded image. It is a cool feature, but we believe we could get more shares if the links automatically appear underneath an uploaded image.

So basically, we want to remove the image and have the embed URLs automatically show under the image. Is this possible? Thanks.
 
Yeah, easiest way is to open estilo.css and change this:

Code:
div#sharethis a {
    background: url(site-img/tool_compartir.gif) no-repeat 10px 0;
    margin-right: 3px;
}

to this:
Code:
div#sharethis a {
    display: none;
    background: url(site-img/tool_compartir.gif) no-repeat 10px 0;
    margin-right: 3px;
}

The real ways involves edit engine.php and rules.js.

Regards.
 
Back
Top