Changelog for 2.6.13
This commit is contained in:
parent
d536d15652
commit
bff95262cb
|
@ -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.
|
||||
|
|
|
@ -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 ) ) ),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue