Files
wc-bootstrap/templates/myaccount/dashboard.html.twig

41 lines
1.5 KiB
Twig
Raw Permalink Normal View History

{#
# My Account Dashboard (Bootstrap 5 Override)
#
# Shows the welcome screen on the account dashboard.
#
# Expected context:
# current_user - WP_User object
#
# WooCommerce PHP equivalent: myaccount/dashboard.php
#
# @package WcBootstrap
# @since 0.1.0
#}
<p>
{{ __('Hello %1$s (not %1$s? <a href="%2$s">Log out</a>)')|format(
'<strong>' ~ current_user.display_name|esc_html ~ '</strong>',
wc_logout_url()|esc_url
)|wp_kses_post }}
</p>
<p>
{% if wc_shipping_enabled() %}
{{ __('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>.')|format(
wc_get_endpoint_url('orders')|esc_url,
wc_get_endpoint_url('edit-address')|esc_url,
wc_get_endpoint_url('edit-account')|esc_url
)|wp_kses_post }}
{% else %}
{{ __('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>.')|format(
wc_get_endpoint_url('orders')|esc_url,
wc_get_endpoint_url('edit-address')|esc_url,
wc_get_endpoint_url('edit-account')|esc_url
)|wp_kses_post }}
{% endif %}
</p>
{{ do_action('woocommerce_account_dashboard') }}
{{ do_action('woocommerce_before_my_account') }}
{{ do_action('woocommerce_after_my_account') }}