Jump to content

Change frontpage to a CMS page


Recommended Posts

you can try in index.php, replace

 

ControllerFactory::getController('IndexController')->run();

 

to

 

ControllerFactory::getController('CMSController')->run();

 

and in controllers/CMScontroller.php search

 

if ($id_cms = (int)Tools::getValue('id_cms'))

 

and replace with

 

 

if( $_SERVER['REQUEST_URI'] == 'index.php' OR $_SERVER['REQUEST_URI'] == '/'){$cm = 3;}else{$cm=(int)Tools::getValue('id_cms');}

echo $_SERVER['REQUEST_URI'] ;

if ($id_cms =$cm )

Link to comment
Share on other sites

×
×
  • Create New...