> For the complete documentation index, see [llms.txt](https://cryptococo.gitbook.io/cocoshop-theme-development/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cryptococo.gitbook.io/cocoshop-theme-development/liquid/functions/transfer.md).

# transfer

The `transfer` function can be used to transfer an NFT to another address.

### Condition of use

The only template that can use the `transfer` function is [product](/cocoshop-theme-development/architecture/templates/product.md) template.

Also implement an input with the ID `transfer_to` in the template. Please make sure that the input tag with `transfer_to` contains the address to which the NFT will be transferred.

```liquid
<input
    type="text"
    id="transfer_to"
    placeholder="e.g. 0x9853D...66345CF"
>
```
