How To Remove Zip/postal Code

hi all,



how can I remove "zip/postal code "tab from recalculate shipping cost on cart page ?



thanks

remove_zip code.jpg

[quote name='victorb' timestamp='1418035367' post='199034']

hi all,



how can I remove "zip/postal code "tab from recalculate shipping cost on cart page ?



thanks

[/quote]



Please edit the following file:



design\themes\THEME\templates\views\checkout\components\shipping_estimation.tpl



and replace:


```php


{__("zip_postal_code")}


```

with:

```php

{__("zip_postal_code")}


```

[quote name='eComLabs' timestamp='1418054726' post='199087']

Please edit the following file:



design\themes\THEME\templates\views\checkout\components\shipping_estimation.tpl



and replace:


```php


{__("zip_postal_code")}


```

with:

```php

{__("zip_postal_code")}


```
[/quote]

Thanks

I tried but I do not find this part of file ...

/design/themes/[b]basic[/b]/templates/views/checkout/components


Please check below

Thanks again,
Victor



........................

For the basic theme, please replace:


```php


{__("zip_postal_code")}


```

with

```php

{__("zip_postal_code")}


```

[quote name=‘eComLabs’ timestamp=‘1418137434’ post=‘199236’]

For the basic theme, please replace:


<br />
<div class="control-group"><br />
<label for="{$prefix}elm_zipcode{$id_suffix}" {if $location == "sidebox"}class="nowrap"{/if}>{__("zip_postal_code")}</label><br />
<input type="text" class="input-text-medium" id="{$prefix}elm_zipcode{$id_suffix}" name="customer_location[zipcode]" size="{if $location != "sidebox"}25{else}20{/if}" value="{$cart.user_data.s_zipcode}" /><br />
</div><br />

```<br />
<br />
with<br />
<br />
```php
<br />
<div class="control-group hidden"><br />
<label for="{$prefix}elm_zipcode{$id_suffix}" {if $location == "sidebox"}class="nowrap"{/if}>{__("zip_postal_code")}</label><br />
<input type="text" class="input-text-medium" id="{$prefix}elm_zipcode{$id_suffix}" name="customer_location[zipcode]" size="{if $location != "sidebox"}25{else}20{/if}" value="{$cart.user_data.s_zipcode}" /><br />
</div><br />

```<br />
[/quote]<br />
<br />
Works perfect<br />
<br />
Thanks <img src="upload://rA9Qa8gnUPZzRZRdI8kt3dpjkrs.png" class="bbc_emoticon" alt=":)">

We are glad to help everyone here :)

Great tip, thanks for share your knowledge eComLabs! you rock! 8)

[quote name='eComLabs' timestamp='1418137434' post='199236']

For the basic theme, please replace:


```php


{__("zip_postal_code")}


```

with

```php

{__("zip_postal_code")}


```
[/quote]

Hi again,
I just updated to vers 4.3.1 and this "zip code " appear again. How can I remove it (again) from basic theme ?

Thanks

Please try the same modification