joope Posted July 29, 2010 Share Posted July 29, 2010 On my test site here http://presta.pcgro.com/cms.php?id_cms=7 I would like to remove the right right column on this page. How would I do that? Link to comment Share on other sites More sharing options...
e-motostore Posted July 29, 2010 Share Posted July 29, 2010 In the BO, go to modules -> Positions -> then remove modules from right column.These modules will be removed from all pages!!!!!!! Link to comment Share on other sites More sharing options...
joope Posted July 29, 2010 Author Share Posted July 29, 2010 That's the thing...I just want it removed from one page...like this one.. Is there no options? Link to comment Share on other sites More sharing options...
rocky Posted July 29, 2010 Share Posted July 29, 2010 You'll need to edit footer.tpl in your theme's directory and change lines 4-8 (in PrestaShop v1.3.1) from: <!-- Right --> {$HOOK_RIGHT_COLUMN} to: {if $smarty.get.id_cms != 1} <!-- Right --> {$HOOK_RIGHT_COLUMN} {/if} Change 1 to the id of the CMS page you don't want the right column to appear on. Link to comment Share on other sites More sharing options...
outlet.ee Posted August 1, 2010 Share Posted August 1, 2010 I would like to do basically the same - not to show right column on product page only to have the have it wider. I restricted all the modules from appearing on product.php, but the empty right column stays there so this way I can't have any extra space on product page.Is there any chance to make it? Link to comment Share on other sites More sharing options...
rocky Posted August 1, 2010 Share Posted August 1, 2010 Change lines 4-8 (in PrestaShop v1.3.1) from: <!-- Right --> {$HOOK_RIGHT_COLUMN} to: {if $HOOK_RIGHT_COLUMN} <!-- Right --> {$HOOK_RIGHT_COLUMN} {/if} This should display the right column only if there is content for the right column. I'm not sure why PrestaShop didn't do that to begin with. 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