• 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

Redirect to Direct Link

Go to the view.php template and change this:
Code:
<a href="<?php show_short_url('internal'); ?>" target="_blank"><?php show_img_filename(); ?>

To this:
Code:
<a href="<?php show_img_url(); ?>" target="_blank"><?php show_img_filename(); ?>

And change this:
Code:
<div id="view-full-image"><a href="<?php show_short_url('internal'); ?>"

To this:
Code:
<div id="view-full-image"><a href="<?php show_img_url(); ?>"

You can control all the links, text, etc in the theme using the template tags. http://chevereto.com/docs#!template-tags
 
Back
Top