Changelog for 2.6.13

This commit is contained in:
Claudio Sanches 2017-01-18 16:20:48 -02:00
parent d536d15652
commit bff95262cb
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,11 @@
== Changelog ==
= 2.6.13 - 2017-01-18 =
* Fix - Demo store banner styling in 2017.
* Fix - Removed default instructions from COD, BACS and Cheque gateways so displayed messages can be unset.
* Fix - Made variation options update on first load.
* Localisation - Added Romanian locale to the installer.
= 2.6.12 - 2017-01-12 =
* Fix - Make images shown up on pageload when using ajax variations.
* Fix - Allow variations options to be deselected in IE11.

View File

@ -207,7 +207,7 @@ class WC_Order_Item extends WC_Data implements ArrayAccess {
'key' => $meta->key,
'value' => $meta->value,
'display_key' => apply_filters( 'woocommerce_order_item_display_meta_key', $display_key ),
'display_value' => apply_filters( 'woocommerce_order_item_display_meta_value', wpautop( make_clickable( $display_value ) ) ),
'display_value' => wpautop( make_clickable( apply_filters( 'woocommerce_order_item_display_meta_value', $display_value ) ) ),
);
}