Title: Custom Produc Variable Field
Last modified: May 16, 2024

---

# Custom Produc Variable Field

 *  Resolved [ricardhh10](https://wordpress.org/support/users/ricardhh10/)
 * (@ricardhh10)
 * [2 years ago](https://wordpress.org/support/topic/custom-produc-variable-field/)
 * Hi, I love your plugin and I have one question.
 * 1. On my website, I am working with the Advanced product fields plugin to create
   some custom fields, for example: Nombre y numero, Nombre, Numero. I have the 
   ID of all these fields.
 * I would like to know if it is possible to modify the product variations field(
   product_variation), so that the field ‘Nombre y numero: Personalizar’ is not 
   shown in the order.
 * Attached is an image of how it looks now:
 * [https://i.imgur.com/4Q71lJm.png](https://i.imgur.com/4Q71lJm.png)
 * How I want it to look:
 * [https://i.imgur.com/IcpnOqN.png](https://i.imgur.com/IcpnOqN.png)
 * Thank you.
    -  This topic was modified 2 years ago by [ricardhh10](https://wordpress.org/support/users/ricardhh10/).

Viewing 7 replies - 1 through 7 (of 7 total)

 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [2 years ago](https://wordpress.org/support/topic/custom-produc-variable-field/#post-17761869)
 * hi
 * please, adapt this code , you must use meta key ( not label!)
 * `add_filter( 'woocommerce_hidden_order_itemmeta', function($keys){
   $keys[]= "
   your_key_here";//EDITreturn $keys;});
 *  Thread Starter [ricardhh10](https://wordpress.org/support/users/ricardhh10/)
 * (@ricardhh10)
 * [2 years ago](https://wordpress.org/support/topic/custom-produc-variable-field/#post-17762748)
 * It works perfectly, one last question, as you can see in the image below, there
   is a little confusion when exporting orders about who X order belongs to when
   it is more than one order, is there the possibility of placing ‘Datos del cliente’(
   custom field) under all the products of your order, all in the same field?
 * [https://i.imgur.com/QZxJcCe.jpeg](https://i.imgur.com/QZxJcCe.jpeg)
 * The fields that would be grouped together would be these:
 * name
   embedded_product_imageproduct_variationcustom_field(Datos del cliente)
 * Thank you
 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [2 years ago](https://wordpress.org/support/topic/custom-produc-variable-field/#post-17762760)
 * please, open “Setup Fields” and set “Fill order columns for” = All rows
 *  Thread Starter [ricardhh10](https://wordpress.org/support/users/ricardhh10/)
 * (@ricardhh10)
 * [2 years ago](https://wordpress.org/support/topic/custom-produc-variable-field/#post-17762777)
 * Hello, thank you for answering so quickly, yes I have tried that option but it
   is still confusing to repeat so much for the same order, I would like to achieve
   what I said or if not possible, export the .xlsx file with a border for each 
   order that delimits it, sorry for the inconvenience.
 * Thank you once again.
 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [2 years ago](https://wordpress.org/support/topic/custom-produc-variable-field/#post-17762796)
 * To add border – you must modify file using PHPExcel .
   Simplest way – add this
   code to “Misc Settings”
 * `// add empty row after each order, Excel/CSV/TAB formats
   add_filter("woe_fetch_order_data",
   function($rows) {$rows[] = array_fill(0, count($rows[0]),"");return $rows;});
 *  Thread Starter [ricardhh10](https://wordpress.org/support/users/ricardhh10/)
 * (@ricardhh10)
 * [2 years ago](https://wordpress.org/support/topic/custom-produc-variable-field/#post-17763987)
 * Thank you, that works for me.
 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [2 years ago](https://wordpress.org/support/topic/custom-produc-variable-field/#post-17764334)
 * You’re welcome

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Custom Produc Variable Field’ is closed to new replies.

 * ![](https://ps.w.org/woo-order-export-lite/assets/icon-256x256.png?rev=1365554)
 * [Advanced Order Export For WooCommerce](https://wordpress.org/plugins/woo-order-export-lite/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-order-export-lite/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-order-export-lite/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-order-export-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-order-export-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-order-export-lite/reviews/)

 * 7 replies
 * 2 participants
 * Last reply from: [algol.plus](https://wordpress.org/support/users/algolplus/)
 * Last activity: [2 years ago](https://wordpress.org/support/topic/custom-produc-variable-field/#post-17764334)
 * Status: resolved