HEX
Server: nginx/1.26.1
System: Linux 850a3e23ecee 5.15.0-122-generic #132-Ubuntu SMP Thu Aug 29 13:45:52 UTC 2024 x86_64
User: (1000)
PHP: 8.2.27
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/themes/flatsome/template-parts/header/partials/element-account.php
<?php
/**
 * Account element.
 *
 * @package          Flatsome\Templates
 * @flatsome-version 3.20.0
 */

if ( ! is_woocommerce_activated() ) {
	fl_header_element_error( 'woocommerce' );

	return;
}

global $flatsome_header_account_add_lightbox_template;

$icon_style           = get_theme_mod( 'account_icon_style' );
$header_account_title = get_theme_mod( 'header_account_title', 1 );
$is_button            = $icon_style && $icon_style !== 'image' && $icon_style !== 'plain';
$li_atts              = [
	'class' => [ 'account-item', 'has-icon' ],
];

if ( is_account_page() ) $li_atts['class'][]   = 'active';
if ( is_user_logged_in() ) $li_atts['class'][] = 'has-dropdown';
?>

<li <?php echo flatsome_html_atts( $li_atts ); ?>>
<?php if ( $is_button ) echo '<div class="header-button">'; ?>

<?php
if ( is_user_logged_in() ) :
	$link_atts = [
		'href'          => esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ),
		'class'         => [ 'account-link', 'account-login', 'nav-top-link' ],
		'title'         => esc_attr__( 'My account', 'woocommerce' ),
		'aria-label'    => ! $header_account_title ? esc_attr__( 'My account', 'woocommerce' ) : null,
		'aria-expanded' => 'false',
		'aria-haspopup' => 'menu',
	];

	if ( $icon_style && $icon_style !== 'image' ) {
		$link_atts['class'][] = get_flatsome_icon_class( $icon_style, 'small' );
	}
	?>
	<a <?php echo flatsome_html_atts( $link_atts ); ?>>
		<?php if ( get_theme_mod( 'header_account_title', 1 ) ) : ?>
			<span class="header-account-title">
				<?php
				if ( get_theme_mod( 'header_account_username' ) ) :
					$wp_current_user = wp_get_current_user();
					echo esc_html( apply_filters( 'flatsome_header_account_username', $wp_current_user->display_name ) );
				else :
					esc_html_e( 'My account', 'woocommerce' );
				endif;
				?>
				</span>
		<?php endif; ?>

		<?php
		if ( $icon_style == 'image' ) :
			echo '<i aria-hidden="true" class="image-icon circle">' . get_avatar( get_current_user_id() ) . '</i>';
		elseif ( $icon_style ) :
			echo get_flatsome_icon( 'icon-user' );
		endif;
		?>
	</a>
	<?php
else : // Show login/register link.
	$is_lightbox = get_theme_mod( 'account_login_style', 'lightbox' ) === 'lightbox' && ! is_checkout() && ! is_account_page();

	if ( $is_lightbox ) {
		$flatsome_header_account_add_lightbox_template = true;
	}

	$link_atts = [
		'href'          => esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ),
		'class'         => [ 'nav-top-link', 'nav-top-not-logged-in', get_flatsome_icon_class( $icon_style, 'small' ) ],
		'title'         => esc_attr__( 'Login', 'woocommerce' ),
		'role'          => $is_lightbox ? 'button' : null,
		'data-open'     => $is_lightbox ? '#login-form-popup' : null,
		'aria-label'    => ! $header_account_title ? esc_attr__( 'Login', 'woocommerce' ) : null,
		'aria-controls' => $is_lightbox ? 'login-form-popup' : null,
		'aria-expanded' => $is_lightbox ? 'false' : null,
		'aria-haspopup' => $is_lightbox ? 'dialog' : null,
	];

	if ( $icon_style && $icon_style !== 'image' ) {
		$link_atts['class'][] = get_flatsome_icon_class( $icon_style, 'small' );
	}
	?>
	<a <?php echo flatsome_html_atts( $link_atts ); ?>>
		<?php if ( get_theme_mod( 'header_account_title', 1 ) ) : ?>
			<span>
			<?php
			esc_html_e( 'Login', 'woocommerce' );
			if ( get_theme_mod( 'header_account_register' ) ) :
				echo ' / ' . esc_html__( 'Register', 'woocommerce' );
			endif;
			?>
			</span>
			<?php
		else :
			echo get_flatsome_icon( 'icon-user' );
		endif;
		?>
	</a>

<?php endif; ?>

<?php if ( $is_button ) echo '</div>'; ?>

<?php
// Show Dropdown for logged in users.
if ( is_user_logged_in() ) :
	?>
	<ul class="nav-dropdown <?php flatsome_dropdown_classes(); ?>">
		<?php wc_get_template( 'myaccount/account-links.php' ); ?>
	</ul>
<?php endif; ?>

</li>