1
pcollins
Remove Search from the main Menu
  • 2010/1/14 23:26

  • pcollins

  • Just popping in

  • Posts: 6

  • Since: 2010/1/13


Hi all

I need to remove the search form the user profile on the main menu. Could anybody please help at all.

Thanks

2
andrey3761
Re: Remove Search from the main Menu

File \modules\profile\xoops_version.php

// Menu
$modversion['hasMain'] = 1;
if (
$GLOBALS['xoopsUser']) {
    
$modversion['sub'][1]['name'] = _PROFILE_MI_EDITACCOUNT;
    
$modversion['sub'][1]['url'] = "edituser.php";
    
$modversion['sub'][2]['name'] = _PROFILE_MI_PAGE_SEARCH;
    
$modversion['sub'][2]['url'] = "search.php";
    
$modversion['sub'][3]['name'] = _PROFILE_MI_CHANGEPASS;
    
$modversion['sub'][3]['url'] = "changepass.php";
}

replace:

// Menu
$modversion['hasMain'] = 1;
if (
$GLOBALS['xoopsUser']) {
    
$modversion['sub'][1]['name'] = _PROFILE_MI_EDITACCOUNT;
    
$modversion['sub'][1]['url'] = "edituser.php";
    
$modversion['sub'][2]['name'] = _PROFILE_MI_CHANGEPASS;
    
$modversion['sub'][2]['url'] = "changepass.php";
}

Then to update the profile module.

3
pcollins
Re: Remove Search from the main Menu
  • 2010/1/15 10:47

  • pcollins

  • Just popping in

  • Posts: 6

  • Since: 2010/1/13


Thanks for your help. That has made the link dead but i need to remove it from the list.

Thanks