I have followed the instructions to add a tab in the users menu but instead of adding a page I simple with for the tab to be linked with my website Can anyone help me please. What instructions do I need to add to the site.php to create a tab with a url link ?
You can do it same way http://www.amember.com/docs/How_to_customize_user_tabs_in_member's_area Code: Am_Di::getInstance()->hook->add('userMenu', 'siteUserMenu'); function siteUserMenu(Am_Event $event) { // $user = $event->getUser(); // if required $menu = $event->getMenu(); // Add a single tab $menu->addPage(array( 'id' => 'mypage', 'label' => ___('Do The Thing'), 'uri' => '/the.thing', 'order' => 2, )); } You can see uri parameter in code. It is url of your page on site.