yireo-training / magento2-example-address-field-comment
Example module showing how to add custom fields to the checkout
Installs: 133
Dependents: 1
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 3
Open Issues: 0
Type:magento2-module
Requires
- php: >=7.3.0
- magento/framework: ^100.1|^101.0|^102.0|^103.0
Requires (Dev)
- composer/composer: *@dev
- phpunit/phpunit: *
This package is auto-updated.
Last update: 2025-03-19 23:35:18 UTC
README
This module integrates a new fields (comment
) in various ways in the existing fieldsets of a shipment address. The comment
field follows the pattern of a Custom Attribute (EAV value).
- Setup procedure
- Shipment Address step in the checkout
- Address form under the Customer Account
Installation
composer require yireo-training/magento2-example-address-field-comment:dev-master
Setup procedure
Through a file Setup/InstallData.php
the field comment
is added to the database, plus it is added to some forms in the backend. Right after this step, you can already enter and save values for this Custom Attribute comment
in the backend.
Address form under the Customer Account
This is actually bad code: While the customer-entity can be cleanly extended using a form API, the address form is not easy to extend: Its fields are hard-coded in PHTML. Therefore, a plugin was created (etc/di.xml
) to hack the new field comment
(Block/Address/Edit/Field/Comment.php
) into the right place.
The block-class calls for the comment
value through the Custom Attribute code.
Shipment Address step in the checkout
The comment
value is added automatically to the checkout, because it is a Custom Attribute. This method is the recommended approach for simple values.