woocommerce/templates/myaccount/my-account.php

30 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/**
2012-08-14 18:05:45 +00:00
* My Account page
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2012-02-03 16:17:35 +00:00
global $woocommerce;
2012-10-09 13:00:08 +00:00
$woocommerce->show_messages(); ?>
2012-10-09 13:00:08 +00:00
<p class="myaccount_user"><?php printf( __( 'Hello, <strong>%s</strong>. From your account dashboard you can view your recent orders, manage your shipping and billing addresses and <a href="%s">change your password</a>.', 'woocommerce' ), $current_user->display_name, get_permalink( woocommerce_get_page_id( 'change_password' ) ) ); ?></p>
2012-10-09 13:00:08 +00:00
<?php do_action( 'woocommerce_before_my_account' ); ?>
<?php woocommerce_get_template( 'myaccount/my-downloads.php' ); ?>
2012-10-09 13:00:08 +00:00
<?php do_action( 'woocommerce_between_my_account_downloads_and_orders' ); ?>
2012-10-09 13:00:08 +00:00
<?php woocommerce_get_template( 'myaccount/my-orders.php', array( 'recent_orders' => $recent_orders ) ); ?>
<?php do_action( 'woocommerce_between_my_account_orders_and_address' ); ?>
2012-10-09 13:00:08 +00:00
<?php woocommerce_get_template( 'myaccount/my-address.php' ); ?>
<?php do_action( 'woocommerce_after_my_account' ); ?>