# How to save the custom field on the checkout page

**URL:** https://forum.shopware.com/t/how-to-save-the-custom-field-on-the-checkout-page/93120
**Category:** Shopware 6 (English)
**Tags:** customelements
**Created:** [24. Februar 2022 um 10:13 UTC](https://forum.shopware.com/t/how-to-save-the-custom-field-on-the-checkout-page/93120 "2022-02-24T10:13:20Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![piotr.szostakiewicz](https://avatars.discourse-cdn.com/v4/letter/p/c0e974/32.png) [@piotr.szostakiewicz](https://forum.shopware.com/u/piotr.szostakiewicz)
#### Post date: [24. Februar 2022 um 10:13 UTC](https://forum.shopware.com/t/how-to-save-the-custom-field-on-the-checkout-page/93120/1 "2022-02-24T10:13:20Z")

</div>

I am creating an application (not plugin) to integrate with shipping companies. However, I can’t deal with one problem - custom fields. I created one and linked it to an order. How can I save something to this field? It is called custom\_parcel\_locker\_field. The template in which I need to display this field is: `storefront/component/shipping/shipping-method.html.twig`.

Tried to insert something like this, but didn’t work:

```auto
<input type="text" name="customFields['custom_parcel_locker_field']">

```

```auto
<input type="text" name="custom_parcel_locker_field">

```

I would like to point out that this is an application, not a plugin. I know how to do it on a plugin, but I don’t know how I can do it for an application,
