Topic: please admin 3 things just i want to make it

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

Thumbs up

Re: please admin 3 things just i want to make it

1) html + css
2) THE SCRIPT HAS NO ADS!!! FFFFFFFFFFFFFUUUUUUUU
3) Current version support tinyurl, snurl and tr.im (config.php)

rodolfoberrios.com | PLEASE use Tech Support forums to ask for support!

Re: please admin 3 things just i want to make it

1- Under share button? where? If you mean ads just below image, open index.php, look for

<div id="contenido">

Then, a few lines below it look for

<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:

 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:

 
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.

Thumbs up