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

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