Jump to content

[Solucionado] No tengo botón de salir o de logout en las cuentas de los usuarios


grovercs

Recommended Posts

Hola,

 

mi tienda es la siguiente: http://pelletaran.com/pellets

 

y mi problema es que cuando un cliente se crea una cuenta, no hay por ningún lado un botón de salir o de logut con lo que el cliente nunca puede salir de su cuenta.

 

¿ Aque puede ser debido ?

 

Gracias de antemano, saludos

 

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

Veo que no te sale ni el nombre del usuario, ni el boton salir.

 

Tu fichero:

http://pelletaran.com/pellets/themes/PRS050113/modules/blockuserinfo/blockuserinfo.tpl

Estoy viendo el codigo de tu web y creo que tienes codigo comentado de este modo:

<!-- xxxx -->

Prueba dejarlo directamente asi:

{*
* 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 user information module HEADER -->
<div id="header_user" {if $PS_CATALOG_MODE}class="header_user_catalog"{/if}>
        <ul id="header_nav">
                {if !$PS_CATALOG_MODE}
                <li id="shopping_cart">
                        <a href="{$link->getPageLink($order_process, true)|escape:'html'}" title="{l s='View my shopping cart' mod='blockuserinfo'}" rel="nofollow">{l s='Cart' mod='blockuserinfo'}
                        <span class="ajax_cart_quantity{if $cart_qties == 0} hidden{/if}">{$cart_qties}</span>
                        <span class="ajax_cart_product_txt{if $cart_qties != 1} hidden{/if}">{l s='Product' mod='blockuserinfo'}</span>
                        <span class="ajax_cart_product_txt_s{if $cart_qties < 2} hidden{/if}">{l s='Products' mod='blockuserinfo'}</span>
                        <span class="ajax_cart_total{if $cart_qties == 0} hidden{/if}">
                                {if $cart_qties > 0}
                                        {if $priceDisplay == 1}
                                                {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant}
                                                {convertPrice price=$cart->getOrderTotal(false, $blockuser_cart_flag)}
                                        {else}
                                                {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant}
                                                {convertPrice price=$cart->getOrderTotal(true, $blockuser_cart_flag)}
                                        {/if}
                                {/if}
                        </span>
                        <span class="ajax_cart_no_product{if $cart_qties > 0} hidden{/if}">{l s='(empty)' mod='blockuserinfo'}</span>
                        </a>
                </li>
                {/if}
                <li id="your_account"><a href="{$link->getPageLink('my-account', true)|escape:'html'}" title="{l s='View my customer account' mod='blockuserinfo'}" rel="nofollow">{l s='Your Account' mod='blockuserinfo'}</a></li>
        </ul>
        <p id="header_user_info">
                {l s='Welcome' mod='blockuserinfo'}
                {if $logged}
                        <a href="{$link->getPageLink('my-account', true)|escape:'html'}" title="{l s='View my customer account' mod='blockuserinfo'}" class="account" rel="nofollow"><span>{$cookie->customer_firstname} {$cookie->customer_lastname}</span></a>
                        <a href="{$link->getPageLink('index', true, NULL, "mylogout")|escape:'html'}" title="{l s='Log me out' mod='blockuserinfo'}" class="logout" rel="nofollow">{l s='Log out' mod='blockuserinfo'}</a>
                {else}
                        <a href="{$link->getPageLink('my-account', true)|escape:'html'}" title="{l s='Login to your customer account' mod='blockuserinfo'}" class="login" rel="nofollow">{l s='Login' mod='blockuserinfo'}</a>
                {/if}
        </p>
</div>
<!-- /Block user information module HEADER -->

Y por cierto, recuerda tener el modulo de "Bloque de información personal", en la pestaña modulos -> posiciones -> Bloque DisplayTop al menos encima del "Menu Horizontal Superior", si no lo tienes subelo con las flechas.

 

Otra cosa, una vez realizado los cambios en el fichero *.tpl, fuerza compilacion y vaciar cache smarty desde la pestaña Parametros Avanzados -> Rendimiento, o mejor directamente con este modulo: http://www.prestashop.com/forums/topic/238282-modulo-flush-caches-compile-ps15/

  • Like 1
Link to comment
Share on other sites

Muchisimas gracias,

 

Ya tengo el Bienvenido con mi nombre y el botón de salir :)

 

Gracias de nuevo, pongo el solucionado en el titulo del Post

 

Saludos

Un placer ayudarte y servirte !

 

Como has añadido la palabra "Solucionado" al titulo del tema, procedo a cerrar el tema.

Link to comment
Share on other sites

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