Hi Nick,
I have changed the my account page to show the description of the product and to show the video upon completion of the payment. I think this might be good for you as well. (I got rid off the shipped to field)
Here is the full code of the my-account.php file for copy/paste:
<?php
/**
* My Orders
*
* Shows recent orders on the account page
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
global $woocommerce;
$customer_id = get_current_user_id();
$args = array(
'numberposts' => $recent_orders,
'meta_key' => '_customer_user',
'meta_value' => $customer_id,
'post_type' => 'shop_order',
'post_status' => 'publish'
);
$customer_orders = get_posts($args);
if ($customer_orders) :
?>
<table class="shop_table my_account_orders">
<thead>
<tr>
<th class="order-number"><span class="nobr"><?php _e('Order', 'woocommerce'); ?></span></th>
<th class="order-date"><span class="nobr"><?php _e('Datum', 'woocommerce'); ?></span></th>
<th class="product-name"><span class="nobr"><?php _e('Product', 'woocommerce'); ?></span></th>
<th class="product-purchase-note"><span class="nobr"><?php _e('Video', 'woocommerce'); ?></span></th>
<th class="order-total"><span class="nobr"><?php _e('Total', 'woocommerce'); ?></span></th>
<th class="order-status" colspan="2"><span class="nobr"><?php _e('Status', 'woocommerce'); ?></span></th>
</tr>
</thead>
<tbody><?php
foreach ($customer_orders as $customer_order) :
$order = new WC_Order();
$order->populate( $customer_order );
$status = get_term_by('slug', $order->status, 'shop_order_status');
?><tr class="order">
<td class="order-number" width="1%">
<a href="<?php echo esc_url( add_query_arg('order', $order->id, get_permalink(woocommerce_get_page_id('view_order'))) ); ?>"><?php echo $order->get_order_number(); ?></a>;
</td>
<td class="order-date"><time title="<?php echo esc_attr( strtotime($order->order_date) ); ?>"><?php echo date_i18n(get_option('date_format'), strtotime($order->order_date)); ?></time></td>
<?php
if (sizeof($order->get_items())>0) :
foreach($order->get_items() as $item) :
if (isset($item['variation_id']) && $item['variation_id'] > 0) :
$_product = new WC_Product_Variation( $item['variation_id'] );
else :
$_product = new WC_Product( $item['id'] );
endif;
echo '
<td class="product-name">';
echo '' . $item['name'] . '';
$item_meta = new WC_Order_Item_Meta( $item['item_meta'] );
$item_meta->display();
if ( $_product->exists() && $_product->is_downloadable() && $_product->has_file() && ( $order->status=='completed' || ( get_option( 'woocommerce_downloads_grant_access_after_payment' ) == 'yes' && $order->status == 'processing' ) ) ) :
echo '<br/><small><a href="' . $order->get_downloadable_file_url( $item['id'], $item['variation_id'] ) . '">' . __('Download file →', 'woocommerce') . '</a></small>';
endif;
// Show any purchase notes
if ($order->status=='completed' || $order->status=='processing') :
if ($purchase_note = get_post_meta( $_product->id, '_purchase_note', true)) :
echo '<td class="product-purchase-note">' . apply_filters('the_content', $purchase_note) . '</td>';
endif;
endif;
endforeach;
endif;
do_action( 'woocommerce_order_items_table', $order );
?>
<td class="order-total" width="1%"><?php echo $order->get_formatted_order_total(); ?></td>
<td></td><td class="order-status" style="text-align:left; white-space:nowrap;">
<?php echo ucfirst( __( $status->name, 'woocommerce' ) ); ?>
<?php if (in_array($order->status, array('pending', 'failed'))) : ?>
<a href="<?php echo esc_url( $order->get_cancel_order_url() ); ?>" class="cancel" title="<?php _e('Click to cancel this order', 'woocommerce'); ?>">(<?php _e('Cancel', 'woocommerce'); ?>)</a>
<?php endif; ?>
</td>
<td class="order-actions" style="text-align:right; white-space:nowrap;">
<?php if (in_array($order->status, array('pending', 'failed'))) : ?>
<a href="<?php echo esc_url( $order->get_checkout_payment_url() ); ?>" class="button pay"><?php _e('Pay', 'woocommerce'); ?></a>
<?php endif; ?>
<a href="<?php echo esc_url( add_query_arg('order', $order->id, get_permalink(woocommerce_get_page_id('view_order'))) ); ?>" class="button"><?php _e('View', 'woocommerce'); ?></a>
</td>
</tr><?php
endforeach;
?></tbody>
</table>
<?php
else :
?>
<p><?php _e('You have no recent orders.', 'woocommerce'); ?></p>
<?php
endif;
?>