Jump to content

How to get the left column to display on the My Wishlists page


Recommended Posts

  • 2 weeks later...

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

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.

  • Like 1
Link to comment
Share on other sites

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 by Groove (see edit history)
Link to comment
Share on other sites

  • 5 months later...

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

  • 3 weeks later...
×
×
  • Create New...