Helix Ultimate User Menu - Question | JoomShaper

Helix Ultimate User Menu

Ashraf Tayab

Ashraf Tayab

Template 2 years ago

Hi,

Helix Ultimate 2.0.5 Test in localhost

How Do I Add Menu Items In Helix Ultimate User Menu at the top. I would like to add Membership Pro - Joomla Membership Subscription from Joomdonation.

Thank you

0
5 Answers
Toufiq
Toufiq
Accepted Answer
Senior Staff 2 years ago #38513

Hi there,

Thanks for contacting us. By default this option is not available in Helix. If you need any menu then you have to create a hidden menu and grab the link from your hidden menu.

Copy this code & place it after line on 122 menu.php file

templates/shaper_helixultimate/features/menu.php

https://prnt.sc/1w85qjm

    $html[] = ' <li class="sp-profile-dropdown-item">';
    $html[] = '     <a href="' . Route::_('Add your url here') . '">' . Text::_('Add here your menu name') . '</a>';
    $html[] = ' </li>';

-Thanks

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #38506

Hi, what does it means at the top?

In top2 position you need a 2nd menu?

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #38522

Here is video guide : https://youtu.be/GGR_QHEY7Mk

  • this is one of the basic methods.
0
Ashraf Tayab
Ashraf Tayab
Accepted Answer
2 years ago #38524

Hi Toufiq, Thank you a lot for your help.

That is what i need, but one more thing : Whene I on Profile of user and I click on new menu item ( Membership ) it is geav me page ( 404 ), it is happing only whene I on Profile of user.

it is work fine from any other place

code is

$html[] = ' <li class="sp-profile-dropdown-item">';
            $html[] = '     <a href="' . Route::_('index.php?option=com_users&view=profile') . '">' . Text::_('HELIX_ULTIMATE_USER_PROFILE') . '</a>';
            $html[] = ' </li>';
            $html[] = ' <li class="sp-profile-dropdown-item">';
            $html[] = '     <a href="' . Route::_('index.php?option=com_osmembership&view=profile') . '">' . Text::_('Membership') . '</a>';
            $html[] = ' </li>';
            $html[] = ' <li class="sp-profile-dropdown-item">';
            $html[] = '     <a href="' . Route::_('index.php?option=com_users&view=login&layout=logout') . '">' . Text::_('HELIX_ULTIMATE_USER_LOGOUT') . '</a>';
            $html[] = ' </li>';

Thank you

0
Ashraf Tayab
Ashraf Tayab
Accepted Answer
2 years ago #38528

Hi, Paul Frankowski Thank you for your video guide. I would like to use user menu as in Helix Ultimate temlate. Thank you

0