Jump to content

CMS Layout not showing at theme options


fmoreira86

Recommended Posts

With my version 1.7.5.1 I can't change CMS pages layout because the option CMS doesn't show up at theme options.

To Reproduce
Go to Design
Go to Theme & Logo
Click Choose Layouts
CMS Is missing

Additionnal information
PrestaShop version: 1.7.5.1
PHP version: PHP 7.0.33-0ubuntu0.16.04.1

 

Already tried:

Clear cache

Reset Theme configurator module

Replace entire Classic theme

Delete prod and dev folders.

cms.png

Link to comment
Share on other sites

  • 1 month later...
  • 1 year later...
  • 5 months later...

You need to insert the missing metas in the correct table, like this.

INSERT INTO `ps_meta` (`id_meta`, `page`, `configurable`) VALUES (NULL, 'product', '0');

INSERT INTO `ps_meta` (`id_meta`, `page`, `configurable`) VALUES (NULL, 'cms', '0');

INSERT INTO `ps_meta` (`id_meta`, `page`, `configurable`) VALUES (NULL, 'best-sales', '0');

INSERT INTO `ps_meta` (`id_meta`, `page`, `configurable`) VALUES (NULL, 'prices-drop', '0');

INSERT INTO `ps_meta` (`id_meta`, `page`, `configurable`) VALUES (NULL, 'new-products', '0');

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...