meenu Posted January 19, 2013 Share Posted January 19, 2013 In prestashop 1.5, some pages are viewed without left column.......... pls help me to change this as 3 column view........... eg:wishlist.... order-history etc..... Thanks in advance Link to comment Share on other sites More sharing options...
androkot33 Posted January 20, 2013 Share Posted January 20, 2013 Check if you have exeptions for this modules that you mentioned (wishlist, order-history). You can find it in Modules-> Positions-> Edit. Here is picture: Link to comment Share on other sites More sharing options...
tdr170 Posted January 20, 2013 Share Posted January 20, 2013 Look to the global.css file and you will find that the left column is set to display:none for various pages. Delete these exceptions and you will have a three column page, you may need to alter some other css files to show a correctly formatted page. (example) /* ************************************************************************************************ PAGE ADRESSES ************************************************************************************************ */ #addresses #left_column {display:none} (remove) #addresses #center_column{width:757px} (remove) #address p.inline-infos { margin:0 0 0 100px !important; font-size:12px; color:#666; } Link to comment Share on other sites More sharing options...
meenu Posted January 25, 2013 Author Share Posted January 25, 2013 (edited) thanks........... In mywishlist of ps 1.5....... trying to change as 3 column for a long time but in css of blockwishlist, watever changes i did it wont display left column, can u give solution Edited January 25, 2013 by meenu (see edit history) Link to comment Share on other sites More sharing options...
meenu Posted January 25, 2013 Author Share Posted January 25, 2013 In mywishlist of ps 1.5....... trying to change as 3 column for a long time but in css of blockwishlist, watever changes i did it wont display left column, can u give solution Link to comment Share on other sites More sharing options...
tdr170 Posted January 25, 2013 Share Posted January 25, 2013 I do not use the wishlist so I have never tried to do any editing or customizing. If I get the time I will install and have a look, hopefully someone else can provide an answer. Link to comment Share on other sites More sharing options...
Fixfinn Posted February 15, 2013 Share Posted February 15, 2013 Hi! Did You find any solution? I have a similar problem with left column. In order confirmation. I have removed the display:none and changed the width for the center column. I think the left column actually is visible, but does not have any modules to show. It should have been showing "viewed products, advertising" etc.... Link to comment Share on other sites More sharing options...
doubleD Posted February 15, 2013 Share Posted February 15, 2013 In mywishlist of ps 1.5....... trying to change as 3 column for a long time but in css of blockwishlist, watever changes i did it wont display left column, can u give solution Try to change in mywishlist.php function initContent() public function initContent() { $this->display_column_left = true; $this->display_column_right = true; parent::initContent(); $this->assign(); } Link to comment Share on other sites More sharing options...
doubleD Posted February 15, 2013 Share Posted February 15, 2013 I think if you will add these lines into corresponding controller in should work, but did not test it: For example OrderConfirmationController.php public function initContent() { $this->display_column_left = true; $this->display_column_right = true; ........ Link to comment Share on other sites More sharing options...
Arnel Posted February 15, 2013 Share Posted February 15, 2013 Hello FixFinn, This is an interesting issue and would like to see if it was resolved. Did DoubleD's suggestion work for you? Just checking to see. Regards, Arnel C. Web Hosting Hub Link to comment Share on other sites More sharing options...
doubleD Posted February 15, 2013 Share Posted February 15, 2013 For Order page or Order-confirmation page or authentification it's just a global css file: /* ************************************************************************************************ PAGE AUTHENTIFICATION ************************************************************************************************ */ #authentication #left_column {display:none} #authentication #center_column{width:757px} /* ************************************************************************************************ PAIMENT - PAGE ORDER ************************************************************************************************ */ /* nav bottom ********************************************************************************** */ #order #left_column , #order-confirmation #left_column {display:none} #order #center_column, #order-confirmation #center_column{width:757px} Just change remove display:none and set column width Link to comment Share on other sites More sharing options...
doubleD Posted February 15, 2013 Share Posted February 15, 2013 (edited) For blockwishlist you have to do both as posted above: public function initContent() { $this->display_column_left = true; parent::initContent(); $this->assign(); } and change lines in blockwishlist.css #module-blockwishlist-mywishlist #left_column {display:none} #module-blockwishlist-mywishlist #center_column{width:757px} Edited February 15, 2013 by doubleD (see edit history) Link to comment Share on other sites More sharing options...
meenu Posted February 26, 2013 Author Share Posted February 26, 2013 thanks it works nice......... Link to comment Share on other sites More sharing options...
Arnel Posted February 26, 2013 Share Posted February 26, 2013 Thanks for posting the solutions! Arnel C. Web Hosting Hub Link to comment Share on other sites More sharing options...
Recommended Posts