Product atributes in title of order (not in description)

This requires a little bit of code to be placed in functions.php. If you want you can use a plugin like WP-Designer to do that.

The WooCommerce filter ‘woocommerce_product_variation_title’ uses 4 arguments which are self-explanatory in the following piece of code which you can use in you functions.php. I tried it on my install and it works just fine.

add_filter( 'woocommerce_product_variation_title', 'wooc_product_variation_fix', 10,  4);

function wooc_product_variation_fix( $maybe_suffix, $product, $title_base, $title_suffix ) {

return $title_base;
}