woocommerce/docs/product-editor-development/how-to-guides
Caleb Mazalevskis 50900d9d4e
Fix markdown typos. (#50282)
* Fix markdown typos.

* Re-fix typos.

* Add changelogs (#issuecomment-2296573205).
2024-08-19 14:59:10 -03:00
..
README.md Add product form extensibility tutorials (#50137) 2024-08-01 10:50:51 -03:00
custom-field-tutorial.md Add product form extensibility tutorials (#50137) 2024-08-01 10:50:51 -03:00
generic-fields-tutorial.md Fix markdown typos. (#50282) 2024-08-19 14:59:10 -03:00

README.md

How-to Guides for the Product form

There are several ways to extend and modify the new product form. Below are links to different tutorials.

Generic fields

One way to extend the new product form is by making use of generic fields. This allows you to easily modify the form using PHP only. We have a wide variety of generic fields that you can use, like a text, checkbox, pricing or a select field. You can find the full list here.

To see how you can make use of these fields you can follow the generic fields tutorial.

Writing a custom field

It is also possible to write your own custom field and render those within the product form. This is helpful if the generic fields don't quite fit your use case. To see an example of how to create a basic dropdown field in the product form you can follow this tutorial.