2012-12-20 16:34:39 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* My Orders.
|
2012-12-20 16:34:39 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* Shows recent orders on the account page.
|
2012-12-20 16:34:39 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* This template can be overridden by copying it to yourtheme/woocommerce/myaccount/my-downloads.php.
|
2015-10-01 14:07:20 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer).
|
|
|
|
* will need to copy the new files to your theme to maintain compatibility. We try to do this.
|
|
|
|
* as little as possible, but it does happen. When this occurs the version of the template file will.
|
2015-10-01 14:07:20 +00:00
|
|
|
* be bumped and the readme will list any important changes.
|
|
|
|
*
|
|
|
|
* @see http://docs.woothemes.com/document/template-structure/
|
2012-12-20 16:34:39 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2012-12-23 12:19:56 +00:00
|
|
|
* @version 2.0.0
|
2012-12-20 16:34:39 +00:00
|
|
|
*/
|
|
|
|
|
2014-04-23 10:35:43 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
2014-09-22 16:31:03 +00:00
|
|
|
exit; // Exit if accessed directly
|
2014-04-23 10:35:43 +00:00
|
|
|
}
|
2012-12-20 16:34:39 +00:00
|
|
|
|
2013-11-25 14:01:32 +00:00
|
|
|
if ( $downloads = WC()->customer->get_downloadable_products() ) : ?>
|
2012-12-20 16:34:39 +00:00
|
|
|
|
2014-08-21 13:12:02 +00:00
|
|
|
<?php do_action( 'woocommerce_before_available_downloads' ); ?>
|
|
|
|
|
2015-07-21 14:56:18 +00:00
|
|
|
<h2><?php echo apply_filters( 'woocommerce_my_account_my_downloads_title', __( 'Available Downloads', 'woocommerce' ) ); ?></h2>
|
2012-12-20 16:34:39 +00:00
|
|
|
|
2012-12-23 12:19:56 +00:00
|
|
|
<ul class="digital-downloads">
|
|
|
|
<?php foreach ( $downloads as $download ) : ?>
|
|
|
|
<li>
|
|
|
|
<?php
|
|
|
|
do_action( 'woocommerce_available_download_start', $download );
|
2012-12-20 16:34:39 +00:00
|
|
|
|
2012-12-23 12:19:56 +00:00
|
|
|
if ( is_numeric( $download['downloads_remaining'] ) )
|
|
|
|
echo apply_filters( 'woocommerce_available_download_count', '<span class="count">' . sprintf( _n( '%s download remaining', '%s downloads remaining', $download['downloads_remaining'], 'woocommerce' ), $download['downloads_remaining'] ) . '</span> ', $download );
|
2012-12-20 16:34:39 +00:00
|
|
|
|
2012-12-23 12:19:56 +00:00
|
|
|
echo apply_filters( 'woocommerce_available_download_link', '<a href="' . esc_url( $download['download_url'] ) . '">' . $download['download_name'] . '</a>', $download );
|
2012-12-20 16:34:39 +00:00
|
|
|
|
2012-12-23 12:19:56 +00:00
|
|
|
do_action( 'woocommerce_available_download_end', $download );
|
|
|
|
?>
|
|
|
|
</li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
2012-12-20 16:34:39 +00:00
|
|
|
|
2014-08-21 13:12:02 +00:00
|
|
|
<?php do_action( 'woocommerce_after_available_downloads' ); ?>
|
|
|
|
|
2014-09-22 16:31:03 +00:00
|
|
|
<?php endif; ?>
|