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

Consulta (Pages config)

mundo

Chevereto Member
Nas :)

Tengo una consulta, que es que como tendria que poner, en pages_config.php, para que al darle clik al boton INICIO que agregue abajo a la izquierda, que me lleve a mi web. Osea, por ejemplo yo estoy en dudas - sugerencias y para volver al index de mi web, le doy click a inicio y vuelvo a mi web. Pero necesitaría que no me lleve a www.miweb.com/index.php, si no a www.miweb.com

Se entendio xD ?

Y8grO.png


gracias como siempre :)
 
En algun momento olvide que habia pensado en esa feature. La incorporare en algun momento cuando termine de hacer la 2.4 que me tiene vuelto loco jajaja... En fin, anda a content/themes/<tu tema>/footer.php, algo como esto añadiria un link.

HTML:
<li><a href="http://linkpagina.com/">Link Pagina</a></li>

HTML:
        <div id="foot-content">
            <ul>
                <li><a href="http://linkpagina.com/">Link Pagina</a></li>
                <?php show_page_links('<li>'); ?>
                <?php if(is_logged_user()) :?><li><a rel="logout"><?php show_lang_txt('txt_logout'); ?></a></li><?php endif; ?>
            </ul>
            <p>&copy; 2012 <a href="http://chevereto.com/" target="_blank" title="Chevereto Image Upload Script" id="c_chevereto">Chevereto</a></p>
        </div>
 
Back
Top