How To Add Custom Product Fields in WooCommerce (ok)

https://www.cloudways.com/blog/add-custom-product-fields-woocommerce/

C:\xampp\htdocs\hanam\wp-content\themes\car-child\functions.php

// The code for displaying WooCommerce Product Custom Fields
add_action('woocommerce_product_options_general_product_data', 'woocommerce_product_custom_fields');
function woocommerce_product_custom_fields()
{
    global $woocommerce, $post;
    echo '<div class="product_custom_field">';
    //Custom Product Number Field
    woocommerce_wp_text_input(
        array(
            'id' => '_custom_product_number_field',
            'placeholder' => 'Number of seats',
            'label' => __('Number of seats', 'woocommerce'),
            'type' => 'number',
            'custom_attributes' => array(
                'step' => 'any',
                'min' => '0'
            )
        )
    );
    echo '</div>';
}
// Following code Saves  WooCommerce Product Custom Fields
add_action('woocommerce_process_product_meta', 'woocommerce_product_custom_fields_save');
function woocommerce_product_custom_fields_save($post_id) {
// Custom Product Number Field
  $woocommerce_custom_product_number_field = $_POST['_custom_product_number_field'];
  if (!empty($woocommerce_custom_product_number_field)) {
    update_post_meta($post_id, '_custom_product_number_field', esc_attr($woocommerce_custom_product_number_field));
  }
}

How To Add Custom Product Fields in WooCommerce

Updated on November 22, 2021

WooCommerce is the most popular ecommerce solution for WordPress. According to BuiltWith, as of January 2017, WooCommerce powers over 42% of all online stores!

If you are looking for an online store that is easy to set up and manage, WooCommerce is an excellent option that is both free and open source. In addition, WooCommerce has evolved into a very competent ecommerce solution for WordPress based websites.

Having problems adding custom product fields?

Hire a Cloudways Expert to add custom product fields in your WooCommerce store.

FIND AN EXPERT

In my previous article, I discussed how to add custom product fields in WooCommerce Checkout Page and in this tutorial, I will discuss how you could add custom product fields in WooCommerce.

As you could see from the above screenshot, I will demonstrate how you could add custom fields to the Edit Product page. In order to add these fields, I will show you how to edit the functions.php file, found in the theme folder.

The first step is to hook to woocommerce_product_options_general_product_data. The function linked to this hook is responsible for displaying the new fields. A second hook, woocommerce_process_product_meta, will save the custom field values. Both these actions are carried out in the following code:

  1. // The code for displaying WooCommerce Product Custom Fields

  2. add_action( 'woocommerce_product_options_general_product_data', 'woocommerce_product_custom_fields' );

  3. // Following code Saves WooCommerce Product Custom Fields

  4. add_action( 'woocommerce_process_product_meta', 'woocommerce_product_custom_fields_save' );

Adding Product Custom Fields

  1. function woocommerce_product_custom_fields () {

  2. global $woocommerce, $post;

  3. echo '<div class=" product_custom_field ">';

  4. // This function has the logic of creating custom field

  5. // This function includes input text field, Text area and number field

  6. echo '</div>';

  7. }

To create the fields, I will generally use the built-in WooCommerce functions including:

woocommerce_wp_text_input

Package: WooCommerce\Admin\Functions

Located at: includes/admin/wc-meta-box-functions.php

woocommerce_wp_textarea_input

Package: WooCommerce\Admin\Functions

Located at includes/admin/wc-meta-box-functions.php

Field Structure to be Included

  1. // Custom Product Text Field

  2. woocommerce_wp_text_input(

  3. array(

  4. 'id' => '_custom_product_text_field',

  5. 'label' => __( 'My Text Field', 'woocommerce' ),

  6. 'placeholder' => 'Custom Product Text Field',

  7. 'desc_tip' => 'true'

  8. )

  9. );

Note the use of desc_tip to display those nice little bubbles to the right of the field instead of displaying the default field description. This attribute works for every field type.

  1. // Custom Product Number Field

  2. woocommerce_wp_text_input(

  3. array(

  4. 'id' => '_custom_product_number_field',

  5. 'placeholder' => 'Custom Product Number Field',

  6. 'label' => __('Custom Product Number Field', 'woocommerce'),

  7. 'type' => 'number',

  8. 'custom_attributes' => array(

  9. 'step' => 'any',

  10. 'min' => '0'

  11. )

  12. )

  13. );

In the above code, the default value of step is 1 with the min set to zero. Basically, this means that I expect a positive value here (at least greater than zero).

The following code should be used for creating the text area:

  1. // Custom Product Textarea Field

  2. woocommerce_wp_textarea_input(

  3. array(

  4. 'id' => '_custom_product_textarea',

  5. 'placeholder' => 'Custom Product Textarea',

  6. 'label' => __('Custom Product Textarea', 'woocommerce')

  7. )

  8. );

Here is the complete code of custom input fields that you must paste in the functions.php, located in the theme folder.

  1. // Display Fields

  2. add_action('woocommerce_product_options_general_product_data', 'woocommerce_product_custom_fields');

  3. // Save Fields

  4. add_action('woocommerce_process_product_meta', 'woocommerce_product_custom_fields_save');

  5. function woocommerce_product_custom_fields()

  6. {

  7. global $woocommerce, $post;

  8. echo '<div class="product_custom_field">';

  9. // Custom Product Text Field

  10. woocommerce_wp_text_input(

  11. array(

  12. 'id' => '_custom_product_text_field',

  13. 'placeholder' => 'Custom Product Text Field',

  14. 'label' => __('Custom Product Text Field', 'woocommerce'),

  15. 'desc_tip' => 'true'

  16. )

  17. );

  18. //Custom Product Number Field

  19. woocommerce_wp_text_input(

  20. array(

  21. 'id' => '_custom_product_number_field',

  22. 'placeholder' => 'Custom Product Number Field',

  23. 'label' => __('Custom Product Number Field', 'woocommerce'),

  24. 'type' => 'number',

  25. 'custom_attributes' => array(

  26. 'step' => 'any',

  27. 'min' => '0'

  28. )

  29. )

  30. );

  31. //Custom Product Textarea

  32. woocommerce_wp_textarea_input(

  33. array(

  34. 'id' => '_custom_product_textarea',

  35. 'placeholder' => 'Custom Product Textarea',

  36. 'label' => __('Custom Product Textarea', 'woocommerce')

  37. )

  38. );

  39. echo '</div>';

  40. }

Saving Data in the Database

Once you have created the custom product fields, another function is required to save the values, once the user hits either the update or the publish button.

I will now create a function woocommerce_product_custom_fields_save. This function is hooked to woocommerce_process_product_meta. This function is pretty simple; It first checks whether the field is empty. If not, a post meta is created using update_post_meta(). I used esc_attr() and esc_html() to secure the data. Here is the code for saving the value of all the fields:

  1. function woocommerce_product_custom_fields_save($post_id)

  2. {

  3. // Custom Product Text Field

  4. $woocommerce_custom_product_text_field = $_POST['_custom_product_text_field'];

  5. if (!empty($woocommerce_custom_product_text_field))

  6. update_post_meta($post_id, '_custom_product_text_field', esc_attr($woocommerce_custom_product_text_field));

  7. // Custom Product Number Field

  8. $woocommerce_custom_product_number_field = $_POST['_custom_product_number_field'];

  9. if (!empty($woocommerce_custom_product_number_field))

  10. update_post_meta($post_id, '_custom_product_number_field', esc_attr($woocommerce_custom_product_number_field));

  11. // Custom Product Textarea Field

  12. $woocommerce_custom_procut_textarea = $_POST['_custom_product_textarea'];

  13. if (!empty($woocommerce_custom_procut_textarea))

  14. update_post_meta($post_id, '_custom_product_textarea', esc_html($woocommerce_custom_procut_textarea));

  15. }

Get the Values From the Database

Now that the fields have been created and their values saved, I will now display the values on the frontend. In this case, the best method would be to work with the WooCommerce custom templates.

To get those values, I will use the popular get_post_meta() function.

  1. <?php while (have_posts()) : the_post(); ?>

  2. <?php wc_get_template_part('content', 'single-product'); ?>

  3. <?php

  4. // Display the value of custom product text field

  5. echo get_post_meta($post->ID, '_custom_product_text_field', true);

  6. // Display the value of custom product number field

  7. echo get_post_meta(get_the_ID(), '_custom_product_number_field', true);

  8. // Display the value of custom product text area

  9. echo get_post_meta(get_the_ID(), '_custom_product_textarea', true);

  10. ?>

  11. <?php endwhile; // end of the loop. ?>

Add WooCommerce Custom Fields on Product Page

Many store owners don’t realize that they can add custom fields to the product data area. This presents a unique opportunity to display additional information that doesn’t fit into the official WooCommerce UX.

The good thing is that these custom fields can be easily added via the backend. these changes are then reflected in the frontend as custom fields on product pages, cart pages, and similar areas. in fact, these custom fields can also appear on order status pages as well.

Cloudways Woocommerce Hosting Has No Restrictions!

Test your code, plugins and themes with ease.

GET STARTED FREE

To demonstrate this idea of WooCommerce product custom fields, I will demonstrate how to add a new custom field in the Product Data section of a WooCommerce product page:

  1. function woocommerce_product_custom_fields()

  2. {

  3. $args = array(

  4. 'id' => 'woocommerce_custom_fields',

  5. 'label' => __('Add WooCommerce Custom Fields', 'cwoa'),

  6. );

  7. woocommerce_wp_text_input($args);

  8. }

  9. add_action('woocommerce_product_options_general_product_data', 'woocommerce_product_custom_fields');

Here’s how the snippet would appear on the frontend. As you can see, the custom field has the same label as mentioned in the $args array.

Save Custom Fields WooCommerce

Use the following code snippet to add custom fields to product pages. The important thing to note about the snippet is that it uses standard WooCommerce functions and actions.

  1. function save_woocommerce_product_custom_fields($post_id)

  2. {

  3. $product = wc_get_product($post_id);

  4. $custom_fields_woocommerce_title = isset($_POST['woocommerce_custom_fields']) ? $_POST['woocommerce_custom_fields'] : '';

  5. $product->update_meta_data('woocommerce_custom_fields', sanitize_text_field($custom_fields_woocommerce_title));

  6. $product->save();

  7. }

  8. add_action('woocommerce_process_product_meta', 'save_woocommerce_product_custom_fields');

WooCommerce Display Custom Fields On Product Page

The following snippet displays the custom fields. The process I simple – it checks the custom field value and confirms that it has a value. if the case is true, it displays the value as the title of the field.

  1. function woocommerce_custom_fields_display()

  2. {

  3. global $post;

  4. $product = wc_get_product($post->ID);

  5. $custom_fields_woocommerce_title = $product->get_meta('woocommerce_custom_fields');

  6. if ($custom_fields_woocommerce_title) {

  7. printf(

  8. '<div><label>%s</label><input type="text" id="woocommerce_product_custom_fields_title" name="woocommerce_product_custom_fields_title" value=""></div>',

  9. esc_html($custom_fields_woocommerce_title)

  10. );

  11. }

  12. }

  13. add_action('woocommerce_before_add_to_cart_button', 'woocommerce_custom_fields_display');

As you can see from the following image, the custom field is visible on the product page. Note that the title of the field is “WooCommerce product custom fields title”, same as the id value in the snippet.

Conclusion

In this article, I discussed how to add custom fields to the WooCommerce product page. I also demonstrated how you could display the values on the frontend. If you have any trouble using the code or would like to contribute to the discussion, do leave a comment below!

Share This Article

“Great performance for the price, and plenty of control”

Sean P [SMB Owner]

Owais Alam

is the WordPress Community Manager at Cloudways - A Managed WooCommerce Hosting Platform and a seasoned PHP developer. He loves to develop all sorts of websites on WordPress and is in love with WooCommerce in particular. You can email him at owais.alam@cloudways.com

Last updated