gmercado73 Posted July 15, 2010 Share Posted July 15, 2010 Hola gtenteQuisiera saber como modificar los campos de registro de un usuario nuevo, por ejemplo quitar el campo empresa, direccion2, y tal vez añadir un campo nuevo (aunque buscando en el foro he visto que esto es mas complicado)Saludos y gracias !!! Link to comment Share on other sites More sharing options...
Lauser Posted July 20, 2010 Share Posted July 20, 2010 En authentication.tpl de tu template edita lo que quiras,,, borra, copia, pega, lo que desees.......... {l s='Tax Identification Number'} <input type="text" name="dni" id="dni" class="text" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{/if}" /> * {/if} {l s='E-mail'} <input type="text" class="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email}{/if}" /> * {l s='Password'} <input type="password" class="text" name="passwd" id="passwd" /> * {l s='(5 characters min.)'} {l s='Birthday'} - {foreach from=$days item=day} {$day|escape:'htmlall':'UTF-8'} {/foreach} {* {l s='January'} {l s='February'} {l s='March'} {l s='April'} {l s='May'} {l s='June'} {l s='July'} {l s='August'} {l s='September'} {l s='October'} {l s='November'} {l s='December'} *} - {foreach from=$months key=k item=month} {l s="$month"} {/foreach} - {foreach from=$years item=year} {$year|escape:'htmlall':'UTF-8'} {/foreach} <input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} /> {l s='Sign up for our newsletter'} <input type="checkbox"name="optin" id="optin" value="1" {if isset($smarty.post.optin) AND $smarty.post.optin == 1} checked="checked"{/if} /> {l s='Receive special offers from our partners'} {l s='Your address'} {l s='Company'} <input type="text" class="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" /> {l s='First name'} <input type="text" class="text" id="firstname" name="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" /> * {l s='Last name'} <input type="text" class="text" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" /> * Link to comment Share on other sites More sharing options...
gmercado73 Posted July 20, 2010 Author Share Posted July 20, 2010 Gracias Lauser !!! Link to comment Share on other sites More sharing options...
PoSSeK Posted October 5, 2010 Share Posted October 5, 2010 ¡Buenas a todos!¿Alguien sabe qué debo modificar para que la casilla de "apuntarse al boletín" esté marcada por defecto?Muchas gracias y saludos Link to comment Share on other sites More sharing options...
Ayoma Posted October 5, 2010 Share Posted October 5, 2010 Poniendo el atributo checked, es decir, en authentication.tpl, en la línea de código: <input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if}/> {l s='Sign up for our newsletter'} Añadir checked al final quedaría así: <input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} checked/> {l s='Sign up for our newsletter'} Debería funcionar. Saludos Link to comment Share on other sites More sharing options...
PoSSeK Posted October 5, 2010 Share Posted October 5, 2010 ¡Sí que funciona juanjo53!Muchas gracias por la ayuda, y la rapidez un saludo Link to comment Share on other sites More sharing options...
ces_carb Posted May 25, 2011 Share Posted May 25, 2011 Hola! en prestashop 1.4modifico cualquier cosa en authentication.tpl del theme que estoy usando y no se modifica nada en los campos de la registracion...solo si lo quito (al authentication.tpl) el formulario no carga, lo cual esta bien... ¿se entiende?quiero agregar unos campos, cambiar el orden, etc...aparte, el formulario no me muestra campos, que son requeridos... osea, no me deja continuar con la registracion ¿se entiende?Gracias Link to comment Share on other sites More sharing options...
Recommended Posts