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

43 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**
* Email Order Items (plain)
*
* @author WooThemes
* @package WooCommerce/Templates/Emails/Plain
* @version 1.7.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $woocommerce;
foreach ( $items as $item ) :
// Get/prep product data
$_product = $order->get_product_from_item( $item );
$item_meta = new WC_Order_Item_Meta( $item['item_meta'] );
2012-11-27 16:22:47 +00:00
// Title, sku, qty, price
echo apply_filters( 'woocommerce_order_product_title', $item['name'], $_product );
echo $show_sku && $_product->get_sku() ? ' (#' . $_product->get_sku() . ')' : '';
2012-11-27 16:22:47 +00:00
// Variation
echo $item_meta->meta ? "\n" . nl2br( $item_meta->display( true, true ) ) : '';
2012-11-27 16:22:47 +00:00
// Quantity
echo "\n" . sprintf( __( 'Quantity: %s', 'woocommerce' ), $item['qty'] );
2012-11-27 16:22:47 +00:00
// Cost
echo "\n" . sprintf( __( 'Cost: %s', 'woocommerce' ), $order->get_formatted_line_subtotal( $item ) );
2012-11-27 16:22:47 +00:00
// Download URLs
if ( $show_download_links && $_product->exists() && $_product->is_downloadable() )
echo "\n" . implode( ', ', $order->get_downloadable_file_urls( $item['product_id'], $item['variation_id'], $item ) );
// Note
if ( $show_purchase_note && $purchase_note = get_post_meta( $_product->id, '_purchase_note', true ) )
echo "\n" . nl2br( $purchase_note );
2012-11-27 16:22:47 +00:00
echo "\n\n";
endforeach;