Jump to content

Eliminar opción "Ya está inscrito?" SOLUCIONADO


Recommended Posts

Hola!

 

en mi tienda no quiero que haya inscripciones, los clientes tienen que hacer el pedido instantaneo.

Ya he sacado la opción de Crear Cuenta en el bloque de informacion personal y cuando vayan a pagar el carrito quiero que sólo aparezca la opción "Pedido instantaneo"

 

Como puedo sacar los campos del formulario de "Ya está inscrito?"

 

mi tienda es shop.beborn.es

 

Gracias!!!

Edited by CrisBB.es (see edit history)
Link to comment
Share on other sites

Nadie sabe como hacerlo? lo he buscado en el tpl pero no lo encuentro... no me atrevo a tocar nada por si me lo cargo!

 

Prueba ir al fichero:

 

/themes/tu-plantilla/authentication.tpl

 

Busca esto:

 

<form action="{$link->getPageLink('authentication', true)}" method="post" id="login_form" class="std">
 <fieldset>
  <h3>{l s='Already registered?'}</h3>
  <div class="form_content clearfix">
   <p class="text">
 <label for="email">{l s='Email address'}</label>
 <span><input type="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|stripslashes}{/if}" class="account_input" /></span>
   </p>
   <p class="text">
 <label for="passwd">{l s='Password'}</label>
 <span><input type="password" id="passwd" name="passwd" value="{if isset($smarty.post.passwd)}{$smarty.post.passwd|stripslashes}{/if}" class="account_input" /></span>
   </p>
   <p class="lost_password"><a href="{$link->getPageLink('password')}">{l s='Forgot your password?'}</a></p>
   <p class="submit">
 {if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
 <input type="submit" id="SubmitLogin" name="SubmitLogin" class="button" value="{l s='Log in'}" />
   </p>
  </div>
 </fieldset>
</form>

 

Y prueba dejarlo así:

 

{*
<form action="{$link->getPageLink('authentication', true)}" method="post" id="login_form" class="std">
 <fieldset>
  <h3>{l s='Already registered?'}</h3>
  <div class="form_content clearfix">
   <p class="text">
 <label for="email">{l s='Email address'}</label>
 <span><input type="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|stripslashes}{/if}" class="account_input" /></span>
   </p>
   <p class="text">
 <label for="passwd">{l s='Password'}</label>
 <span><input type="password" id="passwd" name="passwd" value="{if isset($smarty.post.passwd)}{$smarty.post.passwd|stripslashes}{/if}" class="account_input" /></span>
   </p>
   <p class="lost_password"><a href="{$link->getPageLink('password')}">{l s='Forgot your password?'}</a></p>
   <p class="submit">
 {if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
 <input type="submit" id="SubmitLogin" name="SubmitLogin" class="button" value="{l s='Log in'}" />
   </p>
  </div>
 </fieldset>
</form>
*}

Link to comment
Share on other sites

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