Gift Certificate Email Only

I want to set-up my gift certificates to only show they can be sent via email and not mail, how can I do that? Thanks!

Hello,



To make it working, please, use the following instructions:


  1. For responsive theme:
  • open “design/themes/responsive/templates/addons/gift_certificates/views/gift_certificates/update.tpl”
  • replace this code:

```php


{__("how_to_send")}



{__("send_via_email")}


{__("send_via_postal_mail")}



```

with this:
```php

{__("how_to_send")}



{__("send_via_email")}

{*

{__("send_via_postal_mail")}

*}


```

2. For basic theme:

```php


{__("send_via_email")}


{__("send_via_postal_mail")}

{__("how_to_send")}



```

with this:
```php



{__("send_via_email")}

{*

{__("send_via_postal_mail")}

*}

{__("how_to_send")}



```

Hope it helps.

Best wishes,
Ruslan Khanbikov.