CrisBB.es Posted May 29, 2013 Share Posted May 29, 2013 (edited) 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 June 3, 2013 by CrisBB.es (see edit history) Link to comment Share on other sites More sharing options...
CrisBB.es Posted June 1, 2013 Author Share Posted June 1, 2013 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! Link to comment Share on other sites More sharing options...
nadie Posted June 2, 2013 Share Posted June 2, 2013 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 More sharing options...
nadie Posted June 2, 2013 Share Posted June 2, 2013 Si tuvieras el pedido activado en 1 paso. (que no es tu caso), seria en el fichero: /themes/tu-plantilla/order-opc-new-account.tpl Link to comment Share on other sites More sharing options...
CrisBB.es Posted June 3, 2013 Author Share Posted June 3, 2013 Perfecto! Gracias Link to comment Share on other sites More sharing options...
nadie Posted June 3, 2013 Share Posted June 3, 2013 Perfecto! Gracias 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...
Recommended Posts