scenteddelights Posted June 20, 2013 Share Posted June 20, 2013 hi all, i wanted to know when you create a CMS is there a way to make it full page on the site instead of it having both columns on the sides.. I have a ton of info i must post and its in the center column which will make it very very long, is there any options out there or a module that will create a full page i can link to the site.. thanks Link to comment Share on other sites More sharing options...
vekia Posted June 20, 2013 Share Posted June 20, 2013 what prestashop version you use? everything depends on it Link to comment Share on other sites More sharing options...
scenteddelights Posted June 20, 2013 Author Share Posted June 20, 2013 1.5.3.1 Link to comment Share on other sites More sharing options...
vekia Posted June 20, 2013 Share Posted June 20, 2013 thanks, so it's easy to achieve open the file: controllers/front/CmsController.php you've got there init() function, code should looks like: public function init() { parent::init(); ... ... you have to add: $this->display_column_left = false; $this->display_column_right = false; so change init function to: public function init() { $this->display_column_left = false; $this->display_column_right = false; parent::init(); ... ... Link to comment Share on other sites More sharing options...
scenteddelights Posted June 20, 2013 Author Share Posted June 20, 2013 great thanks vekia worked like a charm Link to comment Share on other sites More sharing options...
vekia Posted June 21, 2013 Share Posted June 21, 2013 you're welcome so, now i can mark this thread as [solved] btw. you can also mark own threads as solved, this markup is really helpful for other community members - if they see it, they know that in the thread they can get working solution below i pasted step-by-step instruction: To mark a topic as [solved] :- Edit the first post of your topic by clicking on the "Edit" button, - Click on the "Use full editor" button, - Add the "[solved]" string at the beginning of your topic title and click on the "Submit Modified Post" button. btw. i also moved your thread to the correct forum section Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now