<?php
/**
* Dashboard links
*
* @package Flatsome/WooCommerce/Templates
* @flatsome-version 3.20.0
*/
?>
<ul class="dashboard-links">
<?php if ( has_nav_menu( 'my_account' ) ) { ?>
<?php
wp_nav_menu(array(
'theme_location' => 'my_account',
'container' => false,
'items_wrap' => '%3$s',
'depth' => 1
));
?>
<?php } else if(!function_exists('wc_get_account_menu_items')) { ?>
<li>Define your My Account dropdown menu in <strong>Appearance > Menus</strong></li>
<?php } ?>
<?php if ( function_exists( 'wc_get_account_menu_items' ) && get_theme_mod( 'wc_account_links', 1 ) ) { ?>
<?php foreach ( wc_get_account_menu_items() as $endpoint => $label ) : ?>
<li class="<?php echo wc_get_account_menu_item_classes( $endpoint ); ?>">
<a href="<?php echo esc_url( wc_get_account_endpoint_url( $endpoint ) ); ?>"><?php echo esc_html( $label ); ?></a>
</li>
<?php endforeach; ?>
<?php do_action('flatsome_account_links'); ?>
<?php } ?>
</ul>