woocommerce/docs/product-editor-development/how-to-guides
Brent MacKinnon 5e4a6fc5e6
Update totals-footer-item.md (#51261)
* Update totals-footer-item.md

replacing `<` & `>` with `&lt;` & `&gt;` for the purposes of displaying html within code snippets on woocommerce docs site.

* update < > with &lt; &gt;

* more small fixes

* update manifiest

* update erroneous tag swap

---------

Co-authored-by: piinthecloud <stephanie.pi@automattic.com>
Co-authored-by: Jacklyn Biggin <hi@jacklyn.dev>
2024-09-12 13:51:32 +00:00
..
README.md Add product form extensibility tutorials (#50137) 2024-08-01 10:50:51 -03:00
custom-field-tutorial.md Update totals-footer-item.md (#51261) 2024-09-12 13:51:32 +00: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.