Hello,
I don't understand the order that "Add New..." is showing.
Is there a way to change to whatever order you want to have them displayed in?
Hello, I don't understand the order that "Add New..." is showing. Is there a way to change to whatever order you want to have them displayed in? 7.1 My favorite number |
These items are added upon module installation, so the item from the last installed module is shown at the end. These items orded stored in database and there is no builder for it for now. Rules → http://www.boonex.com/terms |
no need for a builder really. just needs to be changed to sort ascending. A lot of things should be changed to sort ascending in admin.... https://dolphin-techs.com - Skype: Dolphin Techs |
Where in the database do I find it so that I can change it into my desired order? These items orded stored in database and there is no builder for it for now.
Thanks 7.1 My favorite number |
Table sys_menu_member, records for this submenu can be listed using the following query: SELECT * FROM `sys_menu_member` WHERE `Parent` = (SELECT `ID` FROM `sys_menu_member` WHERE `Name` = 'AddContent' LIMIT 1);
Where in the database do I find it so that I can change it into my desired order?
Rules → http://www.boonex.com/terms |