HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

How can i remove the "Account Options" Button ?

I want to remove completely (not hide with css) the little "Cog" icon buttons that reveal the popup menu with logged in user options (Edit Prodile, Logout). Where is it located ? I have to overide thme module me.php file ? @R_J ?

Thanks

Comments

  • Options
    R_JR_J Ex-Fanboy Munich Admin

    applications/dashboard/views/modules/me.php

    You should better hook into the event shown below
    $this->EventArguments['Dropdown'] = &$dropdown;
    $this->fireEvent('FlyoutMenu');

    Make sure it is this dropdown and no other.
    Maybe you can check the class name for sender or inspect the other args

    My mobile browser is causing me problems, therefore no further explanation

  • Options

    Thanks @R_J it was very helpful. I m improving the loged in user's dropdown menu

Sign In or Register to comment.