Hi Nader,
edit templates\allura\features\menu.php
FIND Line 100
KEEP $html[] = '<div class="sp-module">';
DELETE if ($user->id === 0) {
KEEP $html[] = '<a class="sp-sign-in" href="' . Route::_('index.php?option=comusers&view=login') . '" ><span class="far fa-user me-1" aria-hidden="true"></span><span class="signin-text d-none d-lg-inline-block">' . Text::('HELIX_ULTIMATE_SIGN_IN_MENU') . '</span></a>';
DELETE START
} else {
$html[] = '<div class="sp-profile-wrapper">';
$html[] = '<a href="#" class="sp-sign-in"><i class="fas fa-user-circle" aria-hidden="true"></i> <span class="user-text d-none d-xl-inline-block"> ' . ($user->name ?? '') . '</span> <i class="fas fa-chevron-down arrow-icon" aria-hidden="true"></i></a>';
$html[] = '<ul class="sp-profile-dropdown">';
$html[] = ' <li class="sp-profile-dropdown-item">';
$html[] = ' <a href="/index.php/wishlist">' . Text::_('HELIX_ULTIMATE_USERWISHLIST') . '</a>';
$html[] = ' </li>';
$html[] = ' <li class="sp-profile-dropdown-item">';
$html[] = ' <a href="' . Route::('index.php?option=comeasystore&view=orders') . '">' . Text::('HELIX_ULTIMATE_USERORDERS') . '</a>';
$html[] = ' </li>';
$html[] = ' <li class="sp-profile-dropdown-item">';
$html[] = ' <a href="' . Route::('index.php?option=comusers&view=profile') . '">' . Text::('HELIX_ULTIMATE_USERPROFILE') . '</a>';
$html[] = ' </li>';
$html[] = ' <li class="sp-profile-dropdown-item">';
$html[] = ' <a href="' . Route::('index.php?option=comusers&view=login&layout=logout') . '">' . Text::('HELIX_ULTIMATE_USER_LOGOUT') . '</a>';
$html[] = ' </li>';
$html[] = '</ul>';
$html[] = '</div>';
}
DELETE END