woocommerce/templates/emails/email-order-items.php

65 lines
2.4 KiB
PHP
Raw Normal View History

<?php
/**
* Email Order Items
2012-08-14 18:05:45 +00:00
*
* @author WooThemes
* @package WooCommerce/Templates/Emails
* @version 2.1.0
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $woocommerce;
foreach ( $items as $item ) :
$_product = apply_filters( 'woocommerce_order_item_product', $order->get_product_from_item( $item ), $item );
$item_meta = new WC_Order_Item_Meta( $item['item_meta'] );
?>
<tr>
2013-03-28 12:30:17 +00:00
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee; word-wrap:break-word;"><?php
2012-08-14 18:05:45 +00:00
// Show title/image etc
if ( $show_image )
2013-11-20 19:11:59 +00:00
echo apply_filters( 'woocommerce_order_item_thumbnail', '<img src="' . current( wp_get_attachment_image_src( get_post_thumbnail_id( $_product->id ), 'thumbnail') ) .'" alt="Product Image" height="' . esc_attr( $image_size[1] ) . '" width="' . esc_attr( $image_size[0] ) . '" style="vertical-align:middle; margin-right: 10px;" />', $item );
2012-08-14 18:05:45 +00:00
// Product name
echo apply_filters( 'woocommerce_order_item_name', $item['name'], $item );
2012-08-14 18:05:45 +00:00
// SKU
if ( $show_sku && $_product->get_sku() )
echo ' (#' . $_product->get_sku() . ')';
2012-08-14 18:05:45 +00:00
// File URLs
if ( $show_download_links && $_product->exists() && $_product->is_downloadable() ) {
$download_files = $order->get_item_downloads( $item );
$i = 0;
foreach ( $download_files as $download_id => $file ) {
$i++;
if ( count( $download_files ) > 1 ) {
$prefix = sprintf( __( 'Download %d:', 'woocommerce' ), $i );
} elseif ( $i == 1 )
$prefix = __( 'Download:', 'woocommerce' );
echo '<br/><small>' . $prefix . ' <a href="' . esc_url( $file['download_url'] ) . '" target="_blank">' . esc_html( $file['name'] ) . '</a></small>';
}
}
2012-08-14 18:05:45 +00:00
// Variation
if ( $item_meta->meta )
echo '<br/><small>' . nl2br( $item_meta->display( true, true ) ) . '</small>';
2012-08-14 18:05:45 +00:00
?></td>
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $item['qty'] ;?></td>
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $order->get_formatted_line_subtotal( $item ); ?></td>
</tr>
2012-08-14 18:05:45 +00:00
<?php if ( $show_purchase_note && $purchase_note = get_post_meta( $_product->id, '_purchase_note', true ) ) : ?>
<tr>
<td colspan="3" style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo apply_filters( 'the_content', $purchase_note ); ?></td>
</tr>
<?php endif; ?>
<?php endforeach; ?>