Show meta data on form-pay

Fixes #9674
This commit is contained in:
Mike Jolley 2015-11-23 18:22:31 +00:00
parent 3b5f2710e7
commit 31a7c7df99
1 changed files with 4 additions and 1 deletions

View File

@ -34,7 +34,10 @@ if ( ! defined( 'ABSPATH' ) ) {
<?php if ( sizeof( $order->get_items() ) > 0 ) : ?>
<?php foreach ( $order->get_items() as $item ) : ?>
<tr>
<td class="product-name"><?php echo esc_html( $item['name'] ); ?></td>
<td class="product-name">
<?php echo esc_html( $item['name'] ); ?>
<?php $order->display_item_meta( $item ); ?>
</td>
<td class="product-quantity"><?php echo esc_html( $item['qty'] ); ?></td>
<td class="product-subtotal"><?php echo $order->get_formatted_line_subtotal( $item ); ?></td>
</tr>