Pabloladen Posted July 1, 2013 Share Posted July 1, 2013 (edited) Hola, buenos dias Tengo unas dudas y, como siempre, os la pongo aqui, pork seguro que me la solucionais En "mi cuenta" Me gustaría eliminar y ordenar los enlaces. En información: Me gustaría eliminar y ordenar los enlaces. Os adjunto las imágenes para que sepáis a lo que me refiero http://i.imgur.com/myFb1Fz.jpg http://i.imgur.com/fCWg4AB.jpg Muchisimas gracias una vez mas Edited July 20, 2013 by Pabloladen (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted July 1, 2013 Share Posted July 1, 2013 El bloque mi cuenta del pie de pagina, es un módulo llamado: My account block for your website's footer Lo puedes desactivar, borrar o desinstalar desde la pestaña Módulos -> Módulos. El fichero correspondiente es el fichero: /themes/tu-plantilla/modules/blockmyaccountfooter/blockmyaccountfooter.tpl /modules/blockmyaccountfooter/blockmyaccountfooter.tpl Donde tienes este codigo: <!-- Block myaccount module --> <div class="block myaccount"> <h4 class="title_block"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></h4> <div class="block_content"> <ul class="bullet"> <li><a href="{$link->getPageLink('history', true)}" title="{l s='My orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> {if $returnAllowed}<li><a href="{$link->getPageLink('order-follow', true)}" title="{l s='My returns' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My merchandise returns' mod='blockmyaccountfooter'}</a></li>{/if} <li><a href="{$link->getPageLink('order-slip', true)}" title="{l s='My credit slips' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My credit slips' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('addresses', true)}" title="{l s='My addresses' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My addresses' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('identity', true)}" title="{l s='Manage my personal information' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My personal info' mod='blockmyaccountfooter'}</a></li> {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='My vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} {$HOOK_BLOCK_MY_ACCOUNT} </ul> <p class="logout"><a href="{$link->getPageLink('index')}?mylogout" title="{l s='Sign out' mod='blockmyaccountfooter'}" rel="nofollow">{l s='Sign out' mod='blockmyaccount'}</a></p> </div> </div> <!-- /Block myaccount module --> Algunos enlaces son fijos, y otros se imprimen en el displayMyAccountBlock ({$HOOK_BLOCK_MY_ACCOUNT}) que lo puedes ver en la pestaña Módulos -> Posiciones Link to comment Share on other sites More sharing options...
nadie Posted July 1, 2013 Share Posted July 1, 2013 La zona mi cuenta del cliente, en la que haces referencia en la segunda imagen, es correspondiente al fichero: /themes/tu-plantilla/my-account.tpl Donde tienes algunos enlaces fijos y otros se imprimen en el: {$HOOK_CUSTOMER_ACCOUNT} - displayCustomerAccount (Puedes verlo en la pestaña Módulos -> Posiciones) Link to comment Share on other sites More sharing options...
nadie Posted July 1, 2013 Share Posted July 1, 2013 El bloque de información: Suponiendo que uses la 1.5.... Si en la configuración del módulo (Pestaña Módulos -> Módulos -> Bloque CMS -> Configurar) quitas la opción que dice: Muestra varios enlaces e informaciones en el Footer Directamente y si no me falla la memoria no se vera el bloque en el pie de pagina. Si quieres quitar el enlace del formulario de contacto del bloque información, posiblemente tengas que editar el blockcms.tpl, puede ser que lo tengas sobreescrito en tu plantilla, tipo: /themes/tu-plantilla/modules/blockcms/blockcms.tpl Si no lo tienes hay, puedes editar directamente este: /modules/blockcms/blockcms.tpl (En todo caso, es recomendable que hagas del override) Dentro del blockcms.tpl, el enlace al formulario de contacto es esto: <li class="item"><a href="{$link->getPageLink($contact_url, true)}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a></li> Si lo dejas así: <!-- <li class="item"><a href="{$link->getPageLink($contact_url, true)}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a></li> --> Quedara comentado y no se vera. El enlace de "nuestras tiendas" del bloque de información, lo puedes quitar en la configuración del modulo bloque cms (Pestaña Módulos -> Módulos -> Bloque CMS -> Configurar), si editas por ejemplo el bloque, veras una opción que dice mostrar "Mostrar tienda", con una opción "X y V" El enlace de "Nuestras tiendas" del pie de pagina, lo puedes quitar desde la misma pestaña Preferencias -> Contactos y tiendas en la opcion que dice: Mostrar a pie de página El enlace "creado de Prestashop" del pie de pagina, en la configuración del bloque CMS (Pestaña Módulos -> Módulos -> Bloque CMS -> Configurar) hay una opción llamada: Mostrar \"Creado por PrestaShop\" Si lo señalas se vera, sino la señalas no se vera. En referencia al: blockcms.tpl El enlace de nuevos productos es este: <li class="{if $PS_CATALOG_MODE}first_{/if}item"><a href="{$link->getPageLink('new-products')}" title="{l s='New products' mod='blockcms'}">{l s='New products' mod='blockcms'}</a></li> El enlace de sitemap, es este: <li><a href="{$link->getPageLink('sitemap')}" title="{l s='sitemap' mod='blockcms'}">{l s='Sitemap' mod='blockcms'}</a></li> El enlace de Mejores Ventas, es este: {if !$PS_CATALOG_MODE}<li class="item"><a href="{$link->getPageLink('best-sales')}" title="{l s='Top sellers' mod='blockcms'}">{l s='Top sellers' mod='blockcms'}</a></li>{/if} El enlace de promociones especiales es este: {if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if} El enlace del formulario de contacto es este: <li class="item"><a href="{$link->getPageLink($contact_url, true)}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a></li> Si alguno de ellos no te interesa pues lo comentas con <!-- codigo --> Ejemplo: <!-- <li class="item"><a href="{$link->getPageLink($contact_url, true)}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a></li> --> Como información complementaria, aunque supongo que ya lo sabes en la configuración del bloque cms (Pestaña Módulos -> Módulos -> Bloque CMS -> Configurar puedes señalar que se "muesten o no" los enlaces referente a contenidos que hayas creado en la pestaña Preferencias -> CMS) Link to comment Share on other sites More sharing options...
Pabloladen Posted July 1, 2013 Author Share Posted July 1, 2013 Dentro del footer de my account que es la seccion "Mis Alertas" module/mailalerts/account Link to comment Share on other sites More sharing options...
Pabloladen Posted July 1, 2013 Author Share Posted July 1, 2013 (edited) El bloque mi cuenta del pie de pagina, es un módulo llamado: My account block for your website's footer Lo puedes desactivar, borrar o desinstalar desde la pestaña Módulos -> Módulos. El fichero correspondiente es el fichero: /themes/tu-plantilla/modules/blockmyaccountfooter/blockmyaccountfooter.tpl /modules/blockmyaccountfooter/blockmyaccountfooter.tpl Donde tienes este codigo: <!-- Block myaccount module --> <div class="block myaccount"> <h4 class="title_block"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></h4> <div class="block_content"> <ul class="bullet"> <li><a href="{$link->getPageLink('history', true)}" title="{l s='My orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> {if $returnAllowed}<li><a href="{$link->getPageLink('order-follow', true)}" title="{l s='My returns' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My merchandise returns' mod='blockmyaccountfooter'}</a></li>{/if} <li><a href="{$link->getPageLink('order-slip', true)}" title="{l s='My credit slips' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My credit slips' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('addresses', true)}" title="{l s='My addresses' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My addresses' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('identity', true)}" title="{l s='Manage my personal information' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My personal info' mod='blockmyaccountfooter'}</a></li> {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='My vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} {$HOOK_BLOCK_MY_ACCOUNT} </ul> <p class="logout"><a href="{$link->getPageLink('index')}?mylogout" title="{l s='Sign out' mod='blockmyaccountfooter'}" rel="nofollow">{l s='Sign out' mod='blockmyaccount'}</a></p> </div> </div> <!-- /Block myaccount module --> Algunos enlaces son fijos, y otros se imprimen en el displayMyAccountBlock ({$HOOK_BLOCK_MY_ACCOUNT}) que lo puedes ver en la pestaña Módulos -> Posiciones edito pero no me hace caso, sigue. Quiero quitar: Mis vales descuento Edited July 1, 2013 by Pabloladen (see edit history) Link to comment Share on other sites More sharing options...
Pabloladen Posted July 1, 2013 Author Share Posted July 1, 2013 (edited) El bloque de información: edito y no me hace caso. Quiero quitar Promociones Especiales Edited July 1, 2013 by Pabloladen (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted July 1, 2013 Share Posted July 1, 2013 edito y no me hace caso. Quiero quitar Promociones Especiales Recuerda que tienes que forzar compilacion en la pestaña Parametros Avanzados -> Rendimiento Link to comment Share on other sites More sharing options...
Pabloladen Posted July 1, 2013 Author Share Posted July 1, 2013 Recuerda que tienes que forzar compilacion en la pestaña Parametros Avanzados -> Rendimiento lo tengo activado en Forzar compilacion :/ Link to comment Share on other sites More sharing options...
nadie Posted July 1, 2013 Share Posted July 1, 2013 lo tengo activado en Forzar compilacion :/ ¿El enlace que has quitado es este: {if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if} ¿no? ? Link to comment Share on other sites More sharing options...
Pabloladen Posted July 1, 2013 Author Share Posted July 1, 2013 sip Link to comment Share on other sites More sharing options...
nadie Posted July 1, 2013 Share Posted July 1, 2013 sip Pero el fichero: /themes/tu-plantilla/modules/blockcms/blockcms.tpl o el fichero: /modules/blockcms/blockcms.tpl ¿? (Recuerda que si esta sobreescrito en tu plantilla, debes editar el que este dentro de la plantilla) Link to comment Share on other sites More sharing options...
Pabloladen Posted July 1, 2013 Author Share Posted July 1, 2013 Pero el fichero: /themes/tu-plantilla/modules/blockcms/blockcms.tpl o el fichero: /modules/blockcms/blockcms.tpl ¿? (Recuerda que si esta sobreescrito en tu plantilla, debes editar el que este dentro de la plantilla) en ambos :/ Link to comment Share on other sites More sharing options...
nadie Posted July 1, 2013 Share Posted July 1, 2013 en ambos :/ Ok, prueba usar este modulo: http://www.prestashop.com/forums/topic/238282-modulo-flush-caches-compile-ps15 para vaciar la cache de smarty y la compile de smarty. Link to comment Share on other sites More sharing options...
Pabloladen Posted July 1, 2013 Author Share Posted July 1, 2013 Ok, prueba usar este modulo: http://www.prestasho...es-compile-ps15 para vaciar la cache de smarty y la compile de smarty. Gracias, ya consegui hacerlo Pero sigo sin poder hacer esto: edito pero no me hace caso, sigue. Quiero quitar: Mis vales descuento Link to comment Share on other sites More sharing options...
nadie Posted July 1, 2013 Share Posted July 1, 2013 Gracias, ya consegui hacerlo Pero sigo sin poder hacer esto: edito pero no me hace caso, sigue. Quiero quitar: Mis vales descuento Del: /themes/tu-plantilla/my-account.tpl o del /themes/tu-plantilla/modules/blockmyaccountfooter/blockmyaccountfooter.tpl ¿? Link to comment Share on other sites More sharing options...
Pabloladen Posted July 1, 2013 Author Share Posted July 1, 2013 de /themes/tu-plantilla/modules/blockmyaccountfooter/blockmyaccountfooter.tpl Link to comment Share on other sites More sharing options...
nadie Posted July 1, 2013 Share Posted July 1, 2013 de /themes/tu-plantilla/modules/blockmyaccountfooter/blockmyaccountfooter.tpl ¿Has vaciado la cache de smarty y forzado compilacion tras el cambio? (Usa el modulo que te deje arriba y limpia ambas cosas) Link to comment Share on other sites More sharing options...
Pabloladen Posted July 2, 2013 Author Share Posted July 2, 2013 (edited) Acabo de limpiar compilacion smarty y cache smarty, y mis vales descuento siguen parecinedo Edited July 2, 2013 by Pabloladen (see edit history) Link to comment Share on other sites More sharing options...
Pabloladen Posted July 3, 2013 Author Share Posted July 3, 2013 Alguien puede ayudarme? :/ Nl consigo quitar del footer de mi cuenta la opcion "mis vales descuento" Link to comment Share on other sites More sharing options...
nadie Posted July 3, 2013 Share Posted July 3, 2013 Alguien puede ayudarme? :/ Nl consigo quitar del footer de mi cuenta la opcion "mis vales descuento" ¿Que linea has eliminado de: /themes/tu-plantilla/modules/blockmyaccountfooter/blockmyaccountfooter.tpl ¿ Mas bien, dime como has dejado el fichero. Link to comment Share on other sites More sharing options...
Pabloladen Posted July 3, 2013 Author Share Posted July 3, 2013 Te copio y pego todo el documento: " {* * 2007-2013 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-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} <!-- Block myaccount module --> <div class="block myaccount"> <p class="title_block"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></p> <div class="block_content"> <ul class="bullet"> <li><a href="{$link->getPageLink('history', true)}" title="{l s='List of my orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('addresses', true)}" title="{l s='List of my addresses' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My addresses' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('identity', true)}" title="{l s='Manage my personal information' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My personal info' mod='blockmyaccountfooter'}</a></li> {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='List of my vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} {$HOOK_BLOCK_MY_ACCOUNT} </ul> <p class="logout"><a href="{$link->getPageLink('index')}?mylogout" title="{l s='Sign out' mod='blockmyaccountfooter'}" rel="nofollow">{l s='Sign out' mod='blockmyaccount'}</a></p> </div> </div> <!-- /Block myaccount module --> " Link to comment Share on other sites More sharing options...
Pabloladen Posted July 3, 2013 Author Share Posted July 3, 2013 Esta bien editado no? Que puede ser :/ Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted July 3, 2013 Share Posted July 3, 2013 Te copio y pego todo el documento: " {* * 2007-2013 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.or...ses/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-2013 PrestaShop SA * @license http://opensource.or...ses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} <!-- Block myaccount module --> <div class="block myaccount"> <p class="title_block"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></p> <div class="block_content"> <ul class="bullet"> <li><a href="{$link->getPageLink('history', true)}" title="{l s='List of my orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('addresses', true)}" title="{l s='List of my addresses' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My addresses' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('identity', true)}" title="{l s='Manage my personal information' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My personal info' mod='blockmyaccountfooter'}</a></li> {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='List of my vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} {$HOOK_BLOCK_MY_ACCOUNT} </ul> <p class="logout"><a href="{$link->getPageLink('index')}?mylogout" title="{l s='Sign out' mod='blockmyaccountfooter'}" rel="nofollow">{l s='Sign out' mod='blockmyaccount'}</a></p> </div> </div> <!-- /Block myaccount module --> " Me cuelo por aqui para molestar como de costumbre. ¿Y esto: {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='List of my vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} que es? Link to comment Share on other sites More sharing options...
Pabloladen Posted July 4, 2013 Author Share Posted July 4, 2013 ¿Que linea has eliminado de: /themes/tu-plantilla/modules/blockmyaccountfooter/blockmyaccountfooter.tpl ¿ Mas bien, dime como has dejado el fichero. nadie, ya te lo copie. esta bien edita? esta mal? que pasa? :/ Link to comment Share on other sites More sharing options...
Pabloladen Posted July 4, 2013 Author Share Posted July 4, 2013 da le impresión que todo lo que modifique de /themes/default/modules/blockmyaccountfooter/blockmyaccountfooter.tpl da igual. Borre lo que borre va a aparecer siempre lo mismo :/ Link to comment Share on other sites More sharing options...
Pabloladen Posted July 14, 2013 Author Share Posted July 14, 2013 "mis vales descuento" me sigue apareciendo en el footer de mi cuenta y ya no se que hacer para eliminarlo :/ alguien sabe algo? graciaaass Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted July 14, 2013 Share Posted July 14, 2013 "mis vales descuento" me sigue apareciendo en el footer de mi cuenta y ya no se que hacer para eliminarlo :/ alguien sabe algo? graciaaass ¿Si vacias el tpl y escribes 'hola' ? ¿tambien aparece? Link to comment Share on other sites More sharing options...
Pabloladen Posted July 15, 2013 Author Share Posted July 15, 2013 ¿Si vacias el tpl y escribes 'hola' ? ¿tambien aparece? si, aparece Link to comment Share on other sites More sharing options...
Pabloladen Posted July 15, 2013 Author Share Posted July 15, 2013 que puede ser? como lo puedo quitar? Link to comment Share on other sites More sharing options...
Pabloladen Posted July 20, 2013 Author Share Posted July 20, 2013 Sigo sin conseguir quitarlo :/ :/ :/ Link to comment Share on other sites More sharing options...
nadie Posted July 20, 2013 Share Posted July 20, 2013 Sigo sin conseguir quitarlo :/ :/ :/ Adjunto Imagen (No sea que estemos hablando de cosas diferentes) Imagen 01 Fichero: /themes/tu-plantilla/modules/blockmyaccountfooter/blockmyaccountfooter.tpl Buscar: {* * 2007-2013 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-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} <!-- Block myaccount module --> <div class="block myaccount"> <p class="title_block"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></p> <div class="block_content"> <ul class="bullet"> <li><a href="{$link->getPageLink('history', true)}" title="{l s='List of my orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> {if $returnAllowed}<li><a href="{$link->getPageLink('order-follow', true)}" title="{l s='List of my merchandise returns' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My merchandise returns' mod='blockmyaccountfooter'}</a></li>{/if} <li><a href="{$link->getPageLink('order-slip', true)}" title="{l s='List of my credit slips' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My credit slips' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('addresses', true)}" title="{l s='List of my addresses' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My addresses' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('identity', true)}" title="{l s='Manage my personal information' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My personal info' mod='blockmyaccountfooter'}</a></li> {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='List of my vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} {$HOOK_BLOCK_MY_ACCOUNT} </ul> <p class="logout"><a href="{$link->getPageLink('index')}?mylogout" title="{l s='Sign out' mod='blockmyaccountfooter'}" rel="nofollow">{l s='Sign out' mod='blockmyaccount'}</a></p> </div> </div> <!-- /Block myaccount module --> Dejar: {* * 2007-2013 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-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} <!-- Block myaccount module --> <div class="block myaccount"> <p class="title_block"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></p> <div class="block_content"> <ul class="bullet"> <li><a href="{$link->getPageLink('history', true)}" title="{l s='List of my orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> {if $returnAllowed}<li><a href="{$link->getPageLink('order-follow', true)}" title="{l s='List of my merchandise returns' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My merchandise returns' mod='blockmyaccountfooter'}</a></li>{/if} <li><a href="{$link->getPageLink('addresses', true)}" title="{l s='List of my addresses' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My addresses' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('identity', true)}" title="{l s='Manage my personal information' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My personal info' mod='blockmyaccountfooter'}</a></li> {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='List of my vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} {$HOOK_BLOCK_MY_ACCOUNT} </ul> <p class="logout"><a href="{$link->getPageLink('index')}?mylogout" title="{l s='Sign out' mod='blockmyaccountfooter'}" rel="nofollow">{l s='Sign out' mod='blockmyaccount'}</a></p> </div> </div> <!-- /Block myaccount module --> (En realidad no son vales de descuentos, esta mal la traducción en Prestashop a dia de hoy, son vales de descuentos generados por devoluciones de pedidos xD) Bueno, una vez realizado el cambio: Activar el forzar compilación en la pestaña Parámetros Avanzados -> Rendimiento. Adjunto Imagen: Y vaciar la cache de smarty con este modulo gratuito: http://www.prestashop.com/forums/topic/238282-modulo-flush-caches-compile-ps15/ Adjunto Imagen: 1 Link to comment Share on other sites More sharing options...
Pabloladen Posted July 20, 2013 Author Share Posted July 20, 2013 Si, es eso a lo que me refiero Creo que lo que me has pasado lo tengo hecho. Es mas, ese tpl lo tengo completamente vacio, unicamente con la pañara "hola" xD Aun asi, ahora cuado llegue al curro y tengo una hueco, sigo tus pasos y te cuento Muchisimas gracias Link to comment Share on other sites More sharing options...
Pabloladen Posted July 20, 2013 Author Share Posted July 20, 2013 (edited) Adjunto Imagen (No sea que estemos hablando de cosas diferentes) Imagen 01 Fichero: /themes/tu-plantilla/modules/blockmyaccountfooter/blockmyaccountfooter.tpl Buscar: {* * 2007-2013 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-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} <!-- Block myaccount module --> <div class="block myaccount"> <p class="title_block"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></p> <div class="block_content"> <ul class="bullet"> <li><a href="{$link->getPageLink('history', true)}" title="{l s='List of my orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> {if $returnAllowed}<li><a href="{$link->getPageLink('order-follow', true)}" title="{l s='List of my merchandise returns' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My merchandise returns' mod='blockmyaccountfooter'}</a></li>{/if} <li><a href="{$link->getPageLink('order-slip', true)}" title="{l s='List of my credit slips' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My credit slips' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('addresses', true)}" title="{l s='List of my addresses' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My addresses' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('identity', true)}" title="{l s='Manage my personal information' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My personal info' mod='blockmyaccountfooter'}</a></li> {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='List of my vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} {$HOOK_BLOCK_MY_ACCOUNT} </ul> <p class="logout"><a href="{$link->getPageLink('index')}?mylogout" title="{l s='Sign out' mod='blockmyaccountfooter'}" rel="nofollow">{l s='Sign out' mod='blockmyaccount'}</a></p> </div> </div> <!-- /Block myaccount module --> Dejar: {* * 2007-2013 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-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} <!-- Block myaccount module --> <div class="block myaccount"> <p class="title_block"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></p> <div class="block_content"> <ul class="bullet"> <li><a href="{$link->getPageLink('history', true)}" title="{l s='List of my orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li> {if $returnAllowed}<li><a href="{$link->getPageLink('order-follow', true)}" title="{l s='List of my merchandise returns' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My merchandise returns' mod='blockmyaccountfooter'}</a></li>{/if} <li><a href="{$link->getPageLink('addresses', true)}" title="{l s='List of my addresses' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My addresses' mod='blockmyaccountfooter'}</a></li> <li><a href="{$link->getPageLink('identity', true)}" title="{l s='Manage my personal information' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My personal info' mod='blockmyaccountfooter'}</a></li> {if $voucherAllowed}<li><a href="{$link->getPageLink('discount', true)}" title="{l s='List of my vouchers' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My vouchers' mod='blockmyaccountfooter'}</a></li>{/if} {$HOOK_BLOCK_MY_ACCOUNT} </ul> <p class="logout"><a href="{$link->getPageLink('index')}?mylogout" title="{l s='Sign out' mod='blockmyaccountfooter'}" rel="nofollow">{l s='Sign out' mod='blockmyaccount'}</a></p> </div> </div> <!-- /Block myaccount module --> (En realidad no son vales de descuentos, esta mal la traducción en Prestashop a dia de hoy, son vales de descuentos generados por devoluciones de pedidos xD) Bueno, una vez realizado el cambio: Activar el forzar compilación en la pestaña Parámetros Avanzados -> Rendimiento. Adjunto Imagen: Y vaciar la cache de smarty con este modulo gratuito: http://www.prestasho...s-compile-ps15/ Adjunto Imagen: he seguido todos tus pasos nadie y sigue igual :/ es desesperante :/ Edited July 20, 2013 by Pabloladen (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted July 20, 2013 Share Posted July 20, 2013 he seguido todos tus pasos nadie y sigue igual :/ es desesperante :/ Envíame los datos de acceso y luego por la madrugada o mañana por la mañana te lo miro. Un Saludo, 1 Link to comment Share on other sites More sharing options...
Pabloladen Posted July 20, 2013 Author Share Posted July 20, 2013 Envíame los datos de acceso y luego por la madrugada o mañana por la mañana te lo miro. Un Saludo, que datos necesitas y te los envio por mp? Link to comment Share on other sites More sharing options...
nadie Posted July 20, 2013 Share Posted July 20, 2013 que datos necesitas y te los envio por mp? En principio con FTP es suficiente, efectivamente enviamelos por mp o por correo, no los pongas en el foro publicamente los datos de acceso al ftp, pues seria peligroso. Link to comment Share on other sites More sharing options...
Pabloladen Posted July 20, 2013 Author Share Posted July 20, 2013 (edited) En principio con FTP es suficiente, efectivamente enviamelos por mp o por correo, no los pongas en el foro publicamente los datos de acceso al ftp, pues seria peligroso. enviado por mp y email graciaasss y a ver si logras hacerlo Edited July 20, 2013 by Pabloladen (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted July 20, 2013 Share Posted July 20, 2013 enviado por mp y email graciaasss y a ver si logras hacerlo Ok, pues luego tarde, muy tarde cuando me pueda conectar te lo miro. (Tarde == Madrugada para ti, o mañana del domingo) Saludos, 1 Link to comment Share on other sites More sharing options...
Pabloladen Posted July 20, 2013 Author Share Posted July 20, 2013 Ok, pues luego tarde, muy tarde cuando me pueda conectar te lo miro. (Tarde == Madrugada para ti, o mañana del domingo) Saludos, cuando puedas tio, sin ningun problema Si quieres hablamos por skype y lo vamos viendo. Seguramente este conectado Link to comment Share on other sites More sharing options...
Pabloladen Posted July 20, 2013 Author Share Posted July 20, 2013 nadie has hecho algo? pork ahora ya no aparece xDDDDDDDDDDDDDDDDD marco el post como solucionado y doy gracias a todos los que me habeis ayudado Link to comment Share on other sites More sharing options...
nadie Posted July 21, 2013 Share Posted July 21, 2013 nadie has hecho algo? pork ahora ya no aparece xDDDDDDDDDDDDDDDDD marco el post como solucionado y doy gracias a todos los que me habeis ayudado Si, vaciar la cache de smarty y la compile. (Que supone que ya lo habias realizado, pero al parecer no figuraba asi) Saludos PD: Un placer ayudarte y servirte! Un saludo y recuerda que estaremos en el foro, para guiarte por este mundo oscuro y tenebroso. Link to comment Share on other sites More sharing options...
Pabloladen Posted July 21, 2013 Author Share Posted July 21, 2013 Pues yo lo hice.. no entiendo nada, bueno, lo importane esk esta arreglado gracias nadie! Link to comment Share on other sites More sharing options...
nadie Posted July 21, 2013 Share Posted July 21, 2013 Pues yo lo hice.. no entiendo nada, bueno, lo importane esk esta arreglado gracias nadie! Un placer ayudarte. Nos vemos por el foro ! Link to comment Share on other sites More sharing options...
Recommended Posts