yoyo64 Posted February 27, 2017 Share Posted February 27, 2017 Hello tous le monde j'aimerai ajouter 2 bande sur la largeur de la boutique juste audessus du footer comment faire style un prefooter voir si dessous un module? modification footer ?? Link to comment Share on other sites More sharing options...
PixGeek Posted February 27, 2017 Share Posted February 27, 2017 ce que vous voulez, c'est un bloc réassurance sur la largeur de votre site Link to comment Share on other sites More sharing options...
yoyo64 Posted February 28, 2017 Author Share Posted February 28, 2017 oui voila Link to comment Share on other sites More sharing options...
yoyo64 Posted February 28, 2017 Author Share Posted February 28, 2017 et je voudrais que ce bloke soit tout le temps visible comme le footer Link to comment Share on other sites More sharing options...
PixGeek Posted February 28, 2017 Share Posted February 28, 2017 MP moi Link to comment Share on other sites More sharing options...
yoyo64 Posted March 2, 2017 Author Share Posted March 2, 2017 une idee ? Link to comment Share on other sites More sharing options...
PixGeek Posted March 2, 2017 Share Posted March 2, 2017 il suffit de modifier une peu le php pour qu'il ce greffe sur le footer Link to comment Share on other sites More sharing options...
Ariane Web et Plus Posted March 7, 2017 Share Posted March 7, 2017 Bonjour, Je vous deux modules natifs qui pourrait faire ca en fonction de ce que vous souhaitez comment informations. Soit le module éditeur de page d’accueil ou le module réassurance, après vous n'avez plus qu'a les installer sur le bon hook et à les styliser un peu. Bonne journée Link to comment Share on other sites More sharing options...
PixGeek Posted March 9, 2017 Share Posted March 9, 2017 Je crois que le problème est résolu ! Link to comment Share on other sites More sharing options...
Ariane Web et Plus Posted March 9, 2017 Share Posted March 9, 2017 Ça n'avais pourtant pas l'air, peut-être avez vous résolu ce problème en mp, dans ce cas merci de donner la réponse afin que tout le monde en profite. Link to comment Share on other sites More sharing options...
PixGeek Posted March 9, 2017 Share Posted March 9, 2017 A la demande d'Ariane, voici donc la solutions pour greffer le blockreinsurance sur la homepage de votre site : 1. Ouvrez le fichier /modules/blockreinsurance.php, et repérez ce code : public function hookFooter($params) { $this->context->controller->addCSS($this->_path.'style.css', 'all'); if (!$this->isCached('blockreinsurance.tpl', $this->getCacheId())) { $infos = $this->getListContent($this->context->language->id); $this->context->smarty->assign(array('infos' => $infos, 'nbblocks' => count($infos))); } return $this->display(__FILE__, 'blockreinsurance.tpl', $this->getCacheId()); } 2. copiez le et insérez le juste en dessous, vous devez obtenir ceci : } public function hookFooter($params) { $this->context->controller->addCSS($this->_path.'style.css', 'all'); if (!$this->isCached('blockreinsurance.tpl', $this->getCacheId())) { $infos = $this->getListContent($this->context->language->id); $this->context->smarty->assign(array('infos' => $infos, 'nbblocks' => count($infos))); } return $this->display(__FILE__, 'blockreinsurance.tpl', $this->getCacheId()); } public function hookFooter($params) { $this->context->controller->addCSS($this->_path.'style.css', 'all'); if (!$this->isCached('blockreinsurance.tpl', $this->getCacheId())) { $infos = $this->getListContent($this->context->language->id); $this->context->smarty->assign(array('infos' => $infos, 'nbblocks' => count($infos))); } return $this->display(__FILE__, 'blockreinsurance.tpl', $this->getCacheId()); } public function installFixtures() 3. modifiez le hook sur le code que vous venez de copier. vous vedrez avoir ceci : public function hookFooter($params) { $this->context->controller->addCSS($this->_path.'style.css', 'all'); if (!$this->isCached('blockreinsurance.tpl', $this->getCacheId())) { $infos = $this->getListContent($this->context->language->id); $this->context->smarty->assign(array('infos' => $infos, 'nbblocks' => count($infos))); } return $this->display(__FILE__, 'blockreinsurance.tpl', $this->getCacheId()); } public function hookHome($params) { $this->context->controller->addCSS($this->_path.'style.css', 'all'); if (!$this->isCached('blockreinsurance.tpl', $this->getCacheId())) { $infos = $this->getListContent($this->context->language->id); $this->context->smarty->assign(array('infos' => $infos, 'nbblocks' => count($infos))); } return $this->display(__FILE__, 'blockreinsurance.tpl', $this->getCacheId()); } 4 Sauvegardez et transférez le. 5 Connectez vous a votre admin->modules->positions->greffer un module 6. trouver votre module blockreinsurance 7 Greffer sur le hook Home. simple et efficace. 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