need4speed Posted September 17, 2012 Share Posted September 17, 2012 How can i change the frontpage to a specific cms page? And then when you click on a named "Webshop" it should show the default prestashop frontpage. I have tried alot of things with nu luck Link to comment Share on other sites More sharing options...
shacker Posted September 23, 2012 Share Posted September 23, 2012 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 More sharing options...
Recommended Posts