PDA

View Full Version : How do you remove AdminCP Menu Selections?


SCRIPT3R
06-12-2006, 01:26 AM
i have a few non-working menu selections within my AdminCP that remain although the hacks have been removed. how do i manually remove these particular selections?

Sean S
06-12-2006, 01:49 AM
not sure exactly what version you are using, plus I don't think it's any different in different versions. But for vb3 you can find these links within the index.php in your /admincp folder.

Usually each link starts with the "construct_nav_option" code.

hope that helps.

Zachariah
06-12-2006, 01:07 PM
i have a few non-working menu selections within my AdminCP that remain although the hacks have been removed. how do i manually remove these particular selections?

VB3.5+

FTP into your site:
forums/includes/xml

Look for files cpnav_*.xml .

* = wildcard

These are your menus. Most hacks that you install will replace the * with some type of unique name and usually similar to the hack's name.

EX:
Hack Name: My EShop
XML Menu: cpnav_my_eshop.xml , cpnav_myeshop.xml, cpnav_eshop.xml

You can edit the XML files with a text editor to make sure you remove the right one :)

SCRIPT3R
06-14-2006, 05:59 AM
VB3.5+

FTP into your site:
forums/includes/xml

Look for files cpnav_*.xml .

* = wildcard

These are your menus. Most hacks that you install will replace the * with some type of unique name and usually similar to the hack's name.

EX:
Hack Name: My EShop
XML Menu: cpnav_my_eshop.xml , cpnav_myeshop.xml, cpnav_eshop.xml

You can edit the XML files with a text editor to make sure you remove the right one :)

thank you.