NemoPS Posted October 30, 2012 Share Posted October 30, 2012 (edited) Hi everybody, i don't know if somebody already experienced the same thing, but an issue has been opened in prestashop's forge, here it is: http://forge.prestas...omment-tabpanel I'm working on a theme, and I really need the left column to be visible in the order confirmation. This can't be done without overriding every and each of the NATIVE payemnt modules. And this is bad. So, to the prestashop Guys: is there a temporary non-destructive solution to this, till you fix the issue? Fabio Edited October 30, 2012 by Nemo1 (see edit history) Link to comment Share on other sites More sharing options...
blueraccoon Posted April 23, 2013 Share Posted April 23, 2013 Hi Nemo, How did you manage the over-ride for the left hand column. I desperately need to display this on the order confirmation page too..... Thanks for your help. Link to comment Share on other sites More sharing options...
NemoPS Posted April 24, 2013 Author Share Posted April 24, 2013 I had to edit Frontcontroller.php find this code $this->display_column_left And check it on every occurence. Remove the ternary operator and always assign hooks to tyhe left column where needed Link to comment Share on other sites More sharing options...
blueraccoon Posted April 24, 2013 Share Posted April 24, 2013 Perfect, thanks Nemo. I just had to change the following line twice (around line 443 and 478) from: 'HOOK_LEFT_COLUMN' => ($this->display_column_left ? Hook::exec('displayLeftColumn') : ''), To: 'HOOK_LEFT_COLUMN' => Hook::exec('displayLeftColumn'), Thanks for your help. 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