Jump to content

como eliminar algunos campos de DIRECCIÓN DE ENTREGA


Recommended Posts

Hola a todos he buscado por todos lados y no encuentro como hacerlo, alguien sabe como quitar algunos campos de DIRECCIÓN DE ENTREGA quisiera quitar los que dicen (información adicional, dirección linea 2 y el que dice teléfono domicilio ) esperare su respuesta saludos..

 

aquí una foto para que vean los campos que quiero quitar..

 

 

post-710882-0-39464200-1394906564_thumb.png

 

 

 

saludos y muchas gracias.

 

mi versión es  PrestaShop 1.5.6.1

mi tienda http://tobuyall.com/es/

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Link to comment
Share on other sites

Quitar campo "Información adicional" al crear o editar dirección.
 
Fichero:
 


/themes/plantilla/address.tpl

Buscar esto:
 

<p class="textarea">
			<label for="other">{l s='Additional information'}</label>
			<textarea id="other" name="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other|escape:'html'}{/if}{/if}</textarea>
		</p>

Y dejarlo asi:
 

{* <p class="textarea">
			<label for="other">{l s='Additional information'}</label>
			<textarea id="other" name="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other|escape:'html'}{/if}{/if}</textarea>
		</p> *}

-----
 
Quitar del formulario de registro:
 
Fichero:
 

/themes/plantilla/authentication.tpl

Buscar esto:
 

<p class="textarea">
			<label for="other">{l s='Additional information'}</label>
			<textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{/if}</textarea>
		</p>

y dejalo asi:
 

{* <p class="textarea">
			<label for="other">{l s='Additional information'}</label>
			<textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{/if}</textarea>
		</p> *}

--------
--------

Fichero:
 

/themes/plantilla/order-opc-new-account.tpl

Buscar esto:

<p class="textarea is_customer_param">
					<label for="other">{l s='Additional information'}</label>
					<textarea name="other" id="other" cols="26" rows="3"></textarea>
				</p>

Y dejalo asi:

{* <p class="textarea is_customer_param">
					<label for="other">{l s='Additional information'}</label>
					<textarea name="other" id="other" cols="26" rows="3"></textarea>
				</p> *}

Busca esto:

<p class="textarea is_customer_param">
						<label for="other_invoice">{l s='Additional information'}</label>
						<textarea name="other_invoice" id="other_invoice" cols="26" rows="3"></textarea>
					</p>

Y dejalo asi:

{* <p class="textarea is_customer_param">
						<label for="other_invoice">{l s='Additional information'}</label>
						<textarea name="other_invoice" id="other_invoice" cols="26" rows="3"></textarea>
					</p> *}
  • Like 2
Link to comment
Share on other sites

 

Quitar campo "Información adicional" al crear o editar dirección.

 

Fichero:

 

/themes/plantilla/address.tpl

Buscar esto:

 

<p class="textarea">
			<label for="other">{l s='Additional information'}</label>
			<textarea id="other" name="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other|escape:'html'}{/if}{/if}</textarea>
		</p>

Y dejarlo asi:

 

{* <p class="textarea">
			<label for="other">{l s='Additional information'}</label>
			<textarea id="other" name="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other|escape:'html'}{/if}{/if}</textarea>
		</p> *}

-----

 

Quitar del formulario de registro:

 

Fichero:

 

/themes/plantilla/authentication.tpl

Buscar esto:

 

<p class="textarea">
			<label for="other">{l s='Additional information'}</label>
			<textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{/if}</textarea>
		</p>

y dejalo asi:

 

{* <p class="textarea">
			<label for="other">{l s='Additional information'}</label>
			<textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{/if}</textarea>
		</p> *}

--------

--------

 

Fichero:

 

/themes/plantilla/order-opc-new-account.tpl

Buscar esto:

<p class="textarea is_customer_param">
					<label for="other">{l s='Additional information'}</label>
					<textarea name="other" id="other" cols="26" rows="3"></textarea>
				</p>

Y dejalo asi:

{* <p class="textarea is_customer_param">
					<label for="other">{l s='Additional information'}</label>
					<textarea name="other" id="other" cols="26" rows="3"></textarea>
				</p> *}

Busca esto:

<p class="textarea is_customer_param">
						<label for="other_invoice">{l s='Additional information'}</label>
						<textarea name="other_invoice" id="other_invoice" cols="26" rows="3"></textarea>
					</p>

Y dejalo asi:

{* <p class="textarea is_customer_param">
						<label for="other_invoice">{l s='Additional information'}</label>
						<textarea name="other_invoice" id="other_invoice" cols="26" rows="3"></textarea>
					</p> *}

hola nadie ejecute los pasos que me dijiste pero los campos siguen iguales no se quitan, que puedo hacer hola necesito tu ayuda.

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

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