Guest Posted August 20, 2013 Share Posted August 20, 2013 i have prestashop 1.5.4.3 and last loyalty module. when i login and click on my loyalty points i not see on left left column. how on this page add left columt with standart modules as is example on product page or product list? Link to comment Share on other sites More sharing options...
vekia Posted August 20, 2013 Share Posted August 20, 2013 can you share the url to your website? i will create test account and check the css styles Link to comment Share on other sites More sharing options...
vekia Posted August 20, 2013 Share Posted August 20, 2013 okay i found it! go to modules/loyalty/controllers/front/default.php you've got there code like: public function initContent() { $this->display_column_left = false; parent::initContent(); $this->context->controller->addJqueryPlugin(array('dimensions', 'cluetip')); if (Tools::getValue('process') == 'summary') $this->assignSummaryExecution(); } just remove the $this->display_column_left = false; 1 Link to comment Share on other sites More sharing options...
Guest Posted August 20, 2013 Share Posted August 20, 2013 (edited) hi vekia, would be better delete this text/code or just only replace it? delete "$this->display_column_left = false;" or only rename false on enable "$this->display_column_left = enable;" both variants come or we must delete? now i test and works both variant. is there any difference between them or it will cost the same? Edited August 20, 2013 by MPart (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted August 20, 2013 Share Posted August 20, 2013 "enable" will not work because this property is a "boolean", it means that there are two available options: false / true you can try with true Link to comment Share on other sites More sharing options...
Guest Posted August 20, 2013 Share Posted August 20, 2013 really? now i test on my domain and when i write "enable" so left panel is showed but okay for sure functionality rather we write variant "true" what you write Link to comment Share on other sites More sharing options...
vekia Posted August 20, 2013 Share Posted August 20, 2013 it's because this option only works when you set it to false any other option in this case will not work it mean that prestashop check this option, and if it is set to false - then script will not show the column. any other values are ignored Link to comment Share on other sites More sharing options...
Recommended Posts