hybrid59 0 Posted February 22, 2012 Bonjour à tous, J'utilise la dernière version de prestshop je souhaiterai mettre le bloc newsletters dans le footer, mais dans le back office c'est impossible, comment puis-je contourné cela ? Merci d'avance pour vos réponses. Share this post Link to post Share on other sites
alexidro 4 Posted March 3, 2012 Go into the blocknewsletter.php file then find this code: function hookRightColumn($params) { return $this->hookLeftColumn($params); } and change it to this: function hookRightColumn($params) { return $this->hookLeftColumn($params); } function hookFooter($params) { return $this->hookLeftColumn($params); } Then go into the module positions tab in the back office and click "transplant a module", select "Newsletter Block" as module and "Footer" as hook and "save". And you have done! Tested and working in version 1.4.7 Share this post Link to post Share on other sites
hybrid59 0 Posted March 5, 2012 That's work fine, thank you for your help. Share this post Link to post Share on other sites