Posts

Showing posts from January, 2020

How to Add WooCommerce Custom Product Fields

Image
Do you want to know, how to add WooCommerce custom product fields? I am sure your answer will be “Yes” Let’s get started… WooCommerce is a popular WordPress eCommerce plugin. It contains all the required features for a standard online store. You can easily add extra product fields using WooCommerce hooks. Best WooCommerce Customization Practices WooCommerce has functions for form fields within woocommerce/includes/admin/wc-meta-box-functions.php file. You have to call the right field function e.g woocommerce_wp_text_input($array_args) will add a text field. The arguments will be passed like below code.   l’ll show you how to add following products fields on general tab. Text Number Textarea Select Checkbox Hidden Custom Text Field Custom Date Field Woo Product Select   Hook WooCommerce Custom Product Fields Below code adds fields to product general tab. In step1, create the custom function ci_custom_general_tab_fields() and within it call the required fields functions. In s...