/ Published in: SQL
Used the first sql statement to find your menu item. (Replace menu-% with the name of your menu eg. "primary-links" .
Then using the menu item id fix the items you want to regain the good old delete button on the menu item.
Expand |
Embed | Plain Text
/*Step 1 replace menu-% with your menu name*/ SELECT * FROM `menu_links` WHERE menu_name LIKE 'menu-%' AND module <> 'menu'; /*Step 2 - replace mlid number with number of your item*/ UPDATE menu_links SET module = 'menu' WHERE mlid LIKE '4078';
You need to login to post a comment.
