• 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 set automatic create shorter link

1. open /content/themes/Peafowl/view.php and find:
PHP:
<?php if(is_config_short_url() && is_user_preference_short_url()) : ?>

replace:
PHP:
<?php if(is_config_short_url()) : ?>

2. open /content/themes/Peafowl/index.php and find:
Code:
<div id="upload-tools">
                <a id="preferences"><?php show_lang_txt('button_upload_preferences'); ?></a>
                <div id="upload-params">JPG PNG BMP GIF <span>MAX. <?php show_max_upload_size(); ?></span></div>
            </div>

replace:
Code:
<div id="upload-tools" style="display: none;">
                <a id="preferences"><?php show_lang_txt('button_upload_preferences'); ?></a>
                <div id="upload-params">JPG PNG BMP GIF <span>MAX. <?php show_max_upload_size(); ?></span></div>
            </div>

or just delete all the code.
 
Back
Top