Title: Adding new fields on the same row
Last modified: August 21, 2016

---

# Adding new fields on the same row

 *  [Dalibr](https://wordpress.org/support/users/dalibr/)
 * (@dalibr)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/adding-new-fields-on-the-same-row/)
 * Hello,
 * How can I add 2 new fields on the same row? Now They are on 2.
 *     ```
       add_filter('woocommerce_checkout_fields','reorder_woo_fields');
   
           function reorder_woo_fields($fields) {
            $fields2['billing']['billing_ico'] = array(
               'label'     => __('ICO', 'woocommerce'),
           'placeholder'   => _x('ICO', 'placeholder', 'woocommerce'),
           'required'  => false,
           'class'     => array('form-row-first'),
           'clear'     => true
            );
               	$fields2['billing']['billing_dic'] = array(
               'label'     => __('DIC', 'woocommerce'),
           'placeholder'   => _x('DIC', 'placeholder', 'woocommerce'),
           'required'  => false,
           'class'     => array('form-row-last'),
           'clear'     => true
            );   
   
                   return $fields2;
           }
       ```
   
 * Cheers.
 * [https://wordpress.org/plugins/woocommerce/](https://wordpress.org/plugins/woocommerce/)

The topic ‘Adding new fields on the same row’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

## Tags

 * [new field](https://wordpress.org/support/topic-tag/new-field/)

 * 0 replies
 * 1 participant
 * Last reply from: [Dalibr](https://wordpress.org/support/users/dalibr/)
 * Last activity: [12 years, 3 months ago](https://wordpress.org/support/topic/adding-new-fields-on-the-same-row/)
 * Status: not resolved