Jump to content

Archivo Index


melose

Recommended Posts

Hola, me gustaría saber cómo modificar el archivo index para poner enlaces tipo shopmanía y que aparezcan al final de la página, ¿es posible?

 

El index que vos ves cuando accedes a tu pagina esta formado por diferentes archivos llamados TPL.. si queres poner algo en el pie de pagina tendrias que agregarlo en themes/tutema/footer.tpl

Sldos

Link to comment
Share on other sites

En tu caso que hablas del "pie de pagina" tal como dice "Jaloise" el fichero referente al pie de pagina en la plantilla es el footer.tpl.

 

Si abres el fichero /themes/tu-plantila/footer.tpl, veras que por ejemplo tienes una llamada a esto:

 

{$HOOK_FOOTER}

 

¿Que quiere decir eso?

 

Que los módulo que tu situes en el hook footer (displayFooter), apareceran en "esa" parte.

 

Por eso depende editar el footer.tpl a mano te recomiendo usar algun módulo gratuito como este: http://contentbox.org/ o este http://mypresta.eu/m...s/html-box.html que te permiten por ejemplo posicionarse en el "Hook del Footer (displayFooter)" y meter código html.

 

Asi depende editar el footer.tpl a mano, manejas lo que vayas a meter con un módulo.

Link to comment
Share on other sites

Yo no quiero poner nada en el pie de página si no debajo de éste. No quiero módulos porque se insertan dentro de la página. Yo quiero ponerlo debajo del footer

 

Yo creo que tenes que editar el footer.tpl y ponerlo por debajo de todo el codigo

 

Saludo.s

Link to comment
Share on other sites

Quiero colocar los enlaces a páginas tipo shopmania pero que queden debajo del footer. Intentaré hacer lo que dice jaloise a ver si funciona. Gracias :)

Pues si lo deseas escribe las lineas que vayas a colocar en el footer.tpl directamente, mientras sirva para lo que quieres, estara bien. (En todo caso yo siempre prefiero dividirlo todo en módulos, pero bueno si lo que quieres colocar piensas que solo se te va acomodar correctamente si lo colocas a mano en el footer.tpl pues dejalo hay.)

 

Un Saludo

Link to comment
Share on other sites

Es que el módulo iría dentro del footer y yo quiero los enlaces fuera por eso decía de hacerlo a mano.

Pone ésto

{/if}

</body>

</html>

 

<body>

<table style="text-align: left; width: 100%;" border="0"

cellpadding="2" cellspacing="2">

<tbody>

<tr>

<td><img alt=""

src="https://dl.dropbox.com/u/18331451/16.png"></td>

<td><img style="width: 120px; height: 52px;"

alt=""

src="https://dl.dropbox.com/u/18331451/directorio-empresas.png"></td>

<td><img style="width: 94px; height: 24px;" alt=""

src="https://dl.dropbox.com/u/18331451/icon4.gif"></td>

<td><img alt=""

src="https://dl.dropbox.com/u/18331451/logo2%20%281%29.png"></td>

</tr>

</tbody>

</table>

<br>

</body>

</html>

 

¿Dónde exactamente coloco el código para que aparezca debajo del footer?

Link to comment
Share on other sites

Es que el módulo iría dentro del footer y yo quiero los enlaces fuera por eso decía de hacerlo a mano.

Pone ésto

{/if}

</body>

</html>

 

<body>

<table style="text-align: left; width: 100%;" border="0"

cellpadding="2" cellspacing="2">

<tbody>

<tr>

<td><img alt=""

src="https://dl.dropbox.com/u/18331451/16.png"></td>

<td><img style="width: 120px; height: 52px;"

alt=""

src="https://dl.dropbox.com/u/18331451/directorio-empresas.png"></td>

<td><img style="width: 94px; height: 24px;" alt=""

src="https://dl.dropbox.com/u/18331451/icon4.gif"></td>

<td><img alt=""

src="https://dl.dropbox.com/u/18331451/logo2%20%281%29.png"></td>

</tr>

</tbody>

</table>

<br>

</body>

</html>

 

¿Dónde exactamente coloco el código para que aparezca debajo del footer?

 

En el footer... el footer por default es asi:

 

{*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2012 PrestaShop SA
*  @version  Release: $Revision: 6594 $
*  @license	http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}
 {if !$content_only}
</div>
<!-- Right -->
<div id="right_column" class="column grid_2 omega">
 {$HOOK_RIGHT_COLUMN}
</div>
  </div>
<!-- Footer -->
  <div id="footer" class="grid_9 alpha omega clearfix">
{$HOOK_FOOTER}
{if $PS_ALLOW_MOBILE_DEVICE}
 <p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p>
{/if}
  </div>
 </div>
{/if}

</body>
</html>

 

Si queres que eso quede dentro del footer deberia ir despues del ultimo if

quedando algo asi:

 

{*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2012 PrestaShop SA
*  @version  Release: $Revision: 6594 $
*  @license	http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}
 {if !$content_only}
</div>
<!-- Right -->
<div id="right_column" class="column grid_2 omega">
 {$HOOK_RIGHT_COLUMN}
</div>
  </div>
<!-- Footer -->
  <div id="footer" class="grid_9 alpha omega clearfix">
{$HOOK_FOOTER}
{if $PS_ALLOW_MOBILE_DEVICE}
 <p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p>
{/if}
  </div>
 </div>
{/if}
<table style="text-align: left; width: 100%;" border="0"
cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td><img alt=""
src="https://dl.dropbox.com/u/18331451/16.png"></td>
<td><img style="width: 120px; height: 52px;"
alt=""
src="https://dl.dropbox.com/u/18331451/directorio-empresas.png"></td>
<td><img style="width: 94px; height: 24px;" alt=""
src="https://dl.dropbox.com/u/18331451/icon4.gif"></td>
<td><img alt=""
src="https://dl.dropbox.com/u/18331451/logo2%20%281%29.png"></td>
</tr>
</tbody>
</table>
</body>
</html>

 

Creo yo, probalo y decime(Siempre guarda una copia del footer original por las duads.)

 

Saludos.

Edited by jaloise (see edit history)
Link to comment
Share on other sites

Es que el módulo iría dentro del footer y yo quiero los enlaces fuera por eso decía de hacerlo a mano.

Pone ésto

{/if}

</body>

</html>

 

<body>

<table style="text-align: left; width: 100%;" border="0"

cellpadding="2" cellspacing="2">

<tbody>

<tr>

<td><img alt=""

src="https://dl.dropbox.com/u/18331451/16.png"></td>

<td><img style="width: 120px; height: 52px;"

alt=""

src="https://dl.dropbox.com/u/18331451/directorio-empresas.png"></td>

<td><img style="width: 94px; height: 24px;" alt=""

src="https://dl.dropbox.com/u/18331451/icon4.gif"></td>

<td><img alt=""

src="https://dl.dropbox.com/u/18331451/logo2%20%281%29.png"></td>

</tr>

</tbody>

</table>

<br>

</body>

</html>

 

¿Dónde exactamente coloco el código para que aparezca debajo del footer?

 

Uff que mal el uso de tablas, por mi irian al infierno las tablas.

 

En fin....

 

De hay coje solo esto:

 

<table style="text-align: left; width: 100%;" border="0"
cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td><img alt=""
src="https://dl.dropbox.com/u/18331451/16.png"></td>
<td><img style="width: 120px; height: 52px;"
alt=""
src="https://dl.dropbox.com/u/18331451/directorio-empresas.png"></td>
<td><img style="width: 94px; height: 24px;" alt=""
src="https://dl.dropbox.com/u/18331451/icon4.gif"></td>
<td><img alt=""
src="https://dl.dropbox.com/u/18331451/logo2%20%281%29.png"></td>
</tr>
</tbody>
</table>

 

Y copialo despues de:

 

<div id="footer" class="grid_9 alpha omega clearfix">
   {$HOOK_FOOTER}
   {if $PS_ALLOW_MOBILE_DEVICE}
 <p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p>
   {/if}
  </div>

Link to comment
Share on other sites

En el footer... el footer por default es asi:

 

{*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2012 PrestaShop SA
*  @version  Release: $Revision: 6594 $
*  @license	http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}
 {if !$content_only}
</div>
<!-- Right -->
<div id="right_column" class="column grid_2 omega">
 {$HOOK_RIGHT_COLUMN}
</div>
  </div>
<!-- Footer -->
  <div id="footer" class="grid_9 alpha omega clearfix">
{$HOOK_FOOTER}
{if $PS_ALLOW_MOBILE_DEVICE}
 <p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p>
{/if}
  </div>
 </div>
{/if}

</body>
</html>

 

Si queres que eso quede dentro del footer deberia ir despues del ultimo if

quedando algo asi:

 

{*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2012 PrestaShop SA
*  @version  Release: $Revision: 6594 $
*  @license	http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}
 {if !$content_only}
</div>
<!-- Right -->
<div id="right_column" class="column grid_2 omega">
 {$HOOK_RIGHT_COLUMN}
</div>
  </div>
<!-- Footer -->
  <div id="footer" class="grid_9 alpha omega clearfix">
{$HOOK_FOOTER}
{if $PS_ALLOW_MOBILE_DEVICE}
 <p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p>
{/if}
  </div>
 </div>
{/if}
<table style="text-align: left; width: 100%;" border="0"
cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td><img alt=""
src="https://dl.dropbox.com/u/18331451/16.png"></td>
<td><img style="width: 120px; height: 52px;"
alt=""
src="https://dl.dropbox.com/u/18331451/directorio-empresas.png"></td>
<td><img style="width: 94px; height: 24px;" alt=""
src="https://dl.dropbox.com/u/18331451/icon4.gif"></td>
<td><img alt=""
src="https://dl.dropbox.com/u/18331451/logo2%20%281%29.png"></td>
</tr>
</tbody>
</table>
</body>
</html>

 

Creo yo, probalo y decime(Siempre guarda una copia del footer original por las duads.)

 

Saludos.

 

Parece que respondistes al mismo tiempo :P

Link to comment
Share on other sites

Claramente, ultimamente donde estas vos estoy yo y viceversa jajajaj .. y me gusta que sea mas Nadie que Jaloise porque siempre aportas mas que yo! jajajaja ;)

Como los mosqueteros:

 

¡Todos para uno y uno para todos!

 

A ver si nos dices meloise como ha ido todo :D

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...