Greetings, I am presenting the following issue in Magento 2.3.2:
In the admin I go to Content -> Design -> Settings, but it does not display any type of content, instead it shows an empty list and the message "We couldn't find any records".
I tried to clear cache and reindex with the respective console commands, I also tried to deploy the static content with setup: static-content: deploy and even compile the magento classes with setup: di: compile, However the problem persists
Has anyone experienced this problem before? Does anyone know how to solve it?
Solved! Go to Solution.
Hello @luis_suarez2 ,
Please try the solution provided by @Vimal Kumar , if it didn't work then please check the design_config_grid_flat table in the database. If this table is empty, execute the below query (you need to change your yourtheme_theme_id)
INSERT INTO `design_config_grid_flat` (`entity_id`, `store_website_id`, `store_group_id`, `store_id`, `theme_theme_id`) VALUES (0,NULL,NULL,NULL,''),(1,1,NULL,NULL,'4'),(2,1,1,1,'4');
If this helps you then please gives us kudos and accept it as solution.
Thanks.
Thanks alot!