Hello, aMember is awesome! Thanks for such an amazing program. When I go into the HelpDesk Dashboard as the Admin the box for "Awaiting User Response" is not checked, so these don't show by default. I would like them to show by default. How do I modify the Admin menu to link to: https://yourhebrew.com/members/help..._dashboard_filter_s[2]=awaiting_user_response Thanks!
Hello, You can do it with the following code snippet in site.php file: https://docs.amember.com/docs/Site_php_file PHP: Am_Di::getInstance()->hook->add(Am_Event::ADMIN_MENU, function(Am_Event $e){ /** @var Am_Navigation_Admin $m */ $m = $e->getMenu(); if ($p = $m->findOneById('helpdesk-ticket')) { $p->setUri($e->getDi()->url('helpdesk/admin', false)); }});