2012-12-20 16:34:39 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2017-06-28 04:04:09 +00:00
|
|
|
* My Downloads - Deprecated
|
2012-12-20 16:34:39 +00:00
|
|
|
*
|
2016-01-15 20:34:37 +00:00
|
|
|
* Shows downloads 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
|
|
|
*
|
2016-02-12 11:28:41 +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 be bumped and
|
|
|
|
* the readme will list any important changes.
|
2015-10-01 14:07:20 +00:00
|
|
|
*
|
2016-07-19 10:30:31 +00:00
|
|
|
* @see https://docs.woocommerce.com/document/template-structure/
|
2016-01-20 20:18:58 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
|
|
|
* @version 2.0.0
|
2017-06-28 04:04:09 +00:00
|
|
|
* @deprecated 2.6.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' ); ?>
|
|
|
|
|
2016-10-12 10:16:30 +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
|
|
|
|
2016-04-15 14:11:11 +00:00
|
|
|
<ul class="woocommerce-Downloads digital-downloads">
|
2012-12-23 12:19:56 +00:00
|
|
|
<?php foreach ( $downloads as $download ) : ?>
|
|
|
|
<li>
|
|
|
|
<?php
|
|
|
|
do_action( 'woocommerce_available_download_start', $download );
|
2012-12-20 16:34:39 +00:00
|
|
|
|
2017-03-07 20:24:24 +00:00
|
|
|
if ( is_numeric( $download['downloads_remaining'] ) ) {
|
2016-04-15 14:11:11 +00:00
|
|
|
echo apply_filters( 'woocommerce_available_download_count', '<span class="woocommerce-Count count">' . sprintf( _n( '%s download remaining', '%s downloads remaining', $download['downloads_remaining'], 'woocommerce' ), $download['downloads_remaining'] ) . '</span> ', $download );
|
2017-03-07 20:24:24 +00:00
|
|
|
}
|
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; ?>
|