📘
Magento 2 Megamenu
  • Overview
  • Installation
    • Setup via FTP or cPanel
  • Config and Usage
    • Install sample data
    • Module Configuration
    • Manage Megamenu
    • Create New Megamenu Profile
    • Configure menu item
    • Show menu on frontend Desktop
    • Show Menu On Frontend Mobile
    • How to use Magento 2 Pagebuilder
    • REST API
    • Graph Ql
  • FAQ
    • How to make desktop and mobile menu on same page?
    • How to use dynamic content tabs for sub menu items?
    • How to add a menu using Widget?
    • How to add products in submenu
    • How to show parent menu and sub menus in the same level
    • How to add label into menu items
    • How to add menu link to category and sub categories?
    • How to change default horizontal menu on header?
    • Problem when import larger categories into menu items?
    • How to show accordion menu on Desktop view?
  • Theme Compatible
    • Porto
    • Codazon Fastest Fashion
    • Ultimo
  • Video Tutorials
    • Video guides
Powered by GitBook
On this page

Was this helpful?

  1. FAQ

Problem when import larger categories into menu items?

Question:

I have problem when import larger categories into menu items. After import larger categories and save the menu profile, all menu items on design section are missing, the design section of menu profile show empty.

Answer:

The problem because the megamenu structure column in database table “ves_megamenu_menu” are using type: text, it dont allow store larger content, so json data of menu structure break, and can not generate menu items on design section.

To resolve the issue, please connect to phpmyadmin or mysql server terminal, select the site database and run there queires:

ALTER TABLE `ves_megamenu_menu` MODIFY `structure` mediumtext;
ALTER TABLE `ves_megamenu_menu` MODIFY `html` mediumtext;
ALTER TABLE `ves_megamenu_menu_log` MODIFY `menu_data` mediumtext;
ALTER TABLE `ves_megamenu_menu_log` MODIFY `menu_structure` mediumtext;
ALTER TABLE `ves_megamenu_menu_log` MODIFY `note` mediumtext;
PreviousHow to change default horizontal menu on header?NextHow to show accordion menu on Desktop view?

Last updated 1 year ago

Was this helpful?