# How can i remove salutation from register page ?

**URL:** https://forum.shopware.com/t/how-can-i-remove-salutation-from-register-page/55428
**Category:** International (English Only)
**Tags:** programming, shopping-worlds
**Created:** [27. September 2018 um 08:12 UTC](https://forum.shopware.com/t/how-can-i-remove-salutation-from-register-page/55428 "2018-09-27T08:12:14Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![ansarhusain](https://avatars.discourse-cdn.com/v4/letter/a/cc9497/32.png) [@ansarhusain](https://forum.shopware.com/u/ansarhusain)
#### Post date: [27. September 2018 um 08:12 UTC](https://forum.shopware.com/t/how-can-i-remove-salutation-from-register-page/55428/1 "2018-09-27T08:12:14Z")

</div>

![](https://europe1.discourse-cdn.com/flex013/uploads/shopware/original/2X/c/cd41c386dabdf40b828dc986747d9cc5a47136e4.png)

---

<div class="post-metadata">

### Author: ![iLuHa](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.shopware.com/iluha/32/8191_2.png) [@iLuHa](https://forum.shopware.com/u/iLuHa)
#### Post date: [27. September 2018 um 09:09 UTC](https://forum.shopware.com/t/how-can-i-remove-salutation-from-register-page/55428/2 "2018-09-27T09:09:22Z")

</div>

I guess you’ll have to remove the following block in you theme.

**/themes/Frontend/Bare/frontend/register/personal\_fieldset.tpl**

```
{* Salutation *}
{block name='frontend_register_personal_fieldset_salutation'}

    {getSalutations variable="salutations"}

    
        

            
                {s name='RegisterPlaceholderSalutation'}{/s}{s name="RequiredField" namespace="frontend/register/index"}{/s}
            

            {foreach $salutations as $key => $label}
                {$label}
            {/foreach}
        
    
{/block}

```

&nbsp;

---

<div class="post-metadata">

### Author: ![ansarhusain](https://avatars.discourse-cdn.com/v4/letter/a/cc9497/32.png) [@ansarhusain](https://forum.shopware.com/u/ansarhusain)
#### Post date: [27. September 2018 um 09:21 UTC](https://forum.shopware.com/t/how-can-i-remove-salutation-from-register-page/55428/3 "2018-09-27T09:21:23Z")

</div>

Then its validation faild error giving if i removed it . as it was required field here&nbsp;

---

<div class="post-metadata">

### Author: ![iLuHa](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.shopware.com/iluha/32/8191_2.png) [@iLuHa](https://forum.shopware.com/u/iLuHa)
#### Post date: [27. September 2018 um 09:41 UTC](https://forum.shopware.com/t/how-can-i-remove-salutation-from-register-page/55428/4 "2018-09-27T09:41:34Z")

</div>

Ok I see.&nbsp;I think you’ll need a plugin therefore. (for example:&nbsp;[Anrede entfernen | Kundenkonto + Personalisierung | Erweiterungen | Shopware Community Store](https://store.shopware.com/emz1965718746048/anrede-entfernen.html))

Or you’ll make a workaround like removing the select-field and create a hidden field with a standard value for salutation (e.g. “mr”).  
But this way all your customers will have “mr” as salutation.  
Like they did here:&nbsp;[https://forum.shopware.com/discussion/41156/anrede-salutation-entfernen](https://forum.shopware.com/discussion/41156/anrede-salutation-entfernen)

---

<div class="post-metadata">

### Author: ![ansarhusain](https://avatars.discourse-cdn.com/v4/letter/a/cc9497/32.png) [@ansarhusain](https://forum.shopware.com/u/ansarhusain)
#### Post date: [27. September 2018 um 10:45 UTC](https://forum.shopware.com/t/how-can-i-remove-salutation-from-register-page/55428/5 "2018-09-27T10:45:17Z")

</div>

Is there any other way to remove validation of it so that i could remove ut from Form ?

As to put „mr“ is not a way because it will display „mr“ for all.

&nbsp;
