bradbrad Posted December 17, 2012 Share Posted December 17, 2012 I am trying to get the left column to display on the "my Wishlists" page. I removed the display:none property (which works on all other pages where the left column wasnt displaying, but it still doesnt display! please help Link to comment Share on other sites More sharing options...
bradbrad Posted December 17, 2012 Author Share Posted December 17, 2012 Please, surely someone can help with this?! Link to comment Share on other sites More sharing options...
sadlyblue Posted December 27, 2012 Share Posted December 27, 2012 Hi, I have the same problem. And i haven't found a solution yet. Same thing happens on payment confirmation... The div is created, but nothing happens. I think the problem is in the {$HOOK_LEFT_COLUMN} in the header.tpl that must be returning nothing... I'm using prestashop 1.5.2. Thanks Link to comment Share on other sites More sharing options...
sadlyblue Posted December 27, 2012 Share Posted December 27, 2012 I found a solution, but not the best one. in the file \classes\controller\FrontController.php go to line 450 and change: 'HOOK_LEFT_COLUMN' => ($this->display_column_left ? Hook::exec('displayLeftColumn') : ''), to: 'HOOK_LEFT_COLUMN' => ($this->display_column_left ? Hook::exec('displayLeftColumn') : Hook::exec('displayLeftColumn')), this way we have no choice of showing the left column or not. it will always show it... which is what i want so far. If any one knows how to get the $this->display_column_left in the wishlist to return 1, it would be better. 1 Link to comment Share on other sites More sharing options...
Groove Posted December 29, 2012 Share Posted December 29, 2012 (edited) You wil need to go to modules/blockwishlist/blockwishlist.css and comment out line 76 from #module-blockwishlist-mywishlist #left_column {display:none} to #module-blockwishlist-mywishlist #left_column {/*display:none*/} If you want the left column to show on the other page's that they don't display you will need to search the relavent css files for #left_column and comment out the {display:none} as shown above. Regards Chris Edited December 29, 2012 by Groove (see edit history) Link to comment Share on other sites More sharing options...
Merton Posted June 11, 2013 Share Posted June 11, 2013 Hi, Just to complete this topic. The left column is hide in the controller's module. So, you have to delete this ligne 47 to blockwishlist > controllers > front > mywishlist.php : $this->display_column_left = false; , in order to show the left column on front page. Enjoy. Link to comment Share on other sites More sharing options...
Steeve.c Posted June 30, 2013 Share Posted June 30, 2013 (edited) Thx Sadly Blue, working good for my page loyalty also. I made this change on controller front Probleme solved quickly, thx to you Edited June 30, 2013 by Steeve.c (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts