AbanteCart Community

eCommerce construction => How-to questions => Topic started by: potangina on February 04, 2018, 12:39:42 PM

Title: How to remove Extensions menu option from left Dashboard
Post by: potangina on February 04, 2018, 12:39:42 PM
Hello, pls help me remove the "Extensions" option from the left Dashboard
Title: Re: How to remove Extensions menu option from left Dashboard
Post by: abantecart on February 04, 2018, 05:35:29 PM
Menu is built based on AMenu class. There is a method deleteMenuItem()

https://github.com/abantecart/abantecart-src/blob/acda4b4f1527865ecd1d2e9af0cf4aad3d41371e/public_html/core/lib/menu_control.php#L258

You need to locate menu item ID and pass to this method to delete.

More about menu:
https://abantecart.atlassian.net/wiki/spaces/DOC/pages/17694982/Extending+Menus

Title: Re: How to remove Extensions menu option from left Dashboard
Post by: potangina on February 05, 2018, 09:18:35 AM
thanks for your help sir! but how can i "locate menu item ID and pass to this method to delete"?, im sorry, i have little background in programming.
Title: Re: How to remove Extensions menu option from left Dashboard
Post by: abantecart on February 06, 2018, 04:05:56 PM
I afraid, that without some technical skills, you will not be able to do this.

You need to know how to access the database, run queries and add code to existing PHP files.