• 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

please admin 3 things just i want to make it

xspeeder

Chevereto Noob
1- to put a vertical ad under the share button

2- to remove the ads in the script that is already in th script index

3- to make another short url service instead of tinyurl

please answer me
 
1) html + css
2) THE SCRIPT HAS NO ADS!!! FFFFFFFFFFFFFUUUUUUUU
3) Current version support tinyurl, snurl and tr.im (config.php)
 
1- Under share button? where? If you mean ads just below image, open index.php, look for
Code:
<div id="contenido">

Then, a few lines below it look for
Code:
<div id="share" <? if (isset($v) && $v!=='rec.php') { ?>style="display: none;"<? } ?>>

and paste your advertisement code under the lines.


2- There are no ads dude. Except you download the script from other source than chevereto.com.


3- Open engine.php, look for this:
Code:
 SHORT URL SERVICE
switch($cut_url_service) {
    case 'tinyurl':
        $tiny_api = 'http://tinyurl.com/api-create.php?url=';
        $tiny_service = 'TinyURL';
        break;
    default:
        $tiny_api = 'http://tinyurl.com/api-create.php?url=';
        $tiny_service = 'TinyURL';
        break;
}

Let's say you want to use tr.im, go get their API and replace it on the script.
Example for tr.im:

Code:
switch($cut_url_service) {
    case 'tinyurl':
        $tiny_api = 'http://api.tr.im/v1/trim_simple?url=';
        $tiny_service = 'tr.im';
        break;
    default:
        $tiny_api = 'http://api.tr.im/v1/trim_simple?url=';
        $tiny_service = 'tr.im';
        break;
}

Here is a list of available link shortener sites.
http://mashable.com/2008/01/08/url-shortening-services/


That's what I do. Hope this helps.
 
Back
Top