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

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