File "dashboard.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/templates/myaccount/dashboard.php
File size: 1.15 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

if (!defined('ABSPATH')) {
    exit;
}
$allowed_html = array('a' => array('href' => array()));
?>

<p>
	<?php 
printf(wp_kses(__('Hello %1$s (not %1$s? <a href="%2$s">Log out</a>)', 'woocommerce'), $allowed_html), '<strong>' . esc_html($current_user->display_name) . '</strong>', esc_url(wc_logout_url()));
?>
</p>

<p>
	<?php 
$dashboard_desc = __('From your account dashboard you can view your <a href="%1$s">recent orders</a>, manage your <a href="%2$s">billing address</a>, and <a href="%3$s">edit your password and account details</a>.', 'woocommerce');
if (wc_shipping_enabled()) {
    $dashboard_desc = __('From your account dashboard you can view your <a href="%1$s">recent orders</a>, manage your <a href="%2$s">shipping and billing addresses</a>, and <a href="%3$s">edit your password and account details</a>.', 'woocommerce');
}
printf(wp_kses($dashboard_desc, $allowed_html), esc_url(wc_get_endpoint_url('orders')), esc_url(wc_get_endpoint_url('edit-address')), esc_url(wc_get_endpoint_url('edit-account')));
?>
</p>

<?php 
do_action('woocommerce_account_dashboard');
do_action('woocommerce_before_my_account');
do_action('woocommerce_after_my_account');