ecat Posted May 7, 2009 Share Posted May 7, 2009 voila par exemple je desire rajouter le module pse plugoo qui est un chat si je le configure et le rajoute a la colonne de gauche il apparait bien mais si je desire l'installé sur une autre accroche par exemple l'administration home page il apparait pas pourtant il est bien activé et present dans le tableau administration homepage dans les positions de modulececi m'est deja arrivé avec d'autre module egalement y-a-t-il une manipulation a faire que je ne connaitrez pas encore?merci d'avance pour votre aide à tous Link to comment Share on other sites More sharing options...
Atch Posted May 7, 2009 Share Posted May 7, 2009 salut,Si ton module n'est pas prévu pour aller au centre, il faut que tu le renseignes toi via son fichier PHP.Je cite SotEW qui explique très bien la manip à faire... Well, if you want to have the advertising in your home page, in the center area, you don't have to add a new Hook, because there is the 'home' hook.You will have to change your function install() in blockadvertising with :function install() { if (!parent::install()) return false; if (!$this->registerHook('rightColumn') OR !$this->registerHook('leftColumn') OR !this->registerHook('home')) return false; return true; } And add the function : function hookHome($params) { return $this->hookRightColumn($params); } But may I suggest you to use my module instead ? you'll be able to add and modify elements like swf files or pictures with link on it (juste like blockadvertising) in different places (like home, top, left column, right column, and footer.). You can download it >> HERE <<And, for sperio : This is a good solution to add new Hooks, and I'm working on finding a global array. I'll make some tests soon. V++Atch Link to comment Share on other sites More sharing options...
ecat Posted May 8, 2009 Author Share Posted May 8, 2009 merci bcp atch pour la réponse je vais tester cela Link to comment Share on other sites More sharing options...
liloune89 Posted October 16, 2010 Share Posted October 16, 2010 Bonjour,j'ai adapté cette astuce pour le module des nouveaux produits.je vous donne le code pour ceux que ça intéresse : function install() { if (parent::install() == false OR $this->registerHook('rightColumn') == false OR $this->registerHook('leftColumn') == false OR $this->registerHook('home') == false OR Configuration::updateValue('NEW_PRODUCTS_NBR', 5) == false) return false; return true; } function hookHome($params) { return $this->hookRightColumn($params); } Merci du coup de main ;-) Link to comment Share on other sites More sharing options...
liloune89 Posted October 16, 2010 Share Posted October 16, 2010 Re-bonjour,problème !Avec ce code, tout ce qui est dans la colonne de droite passe au centre, alors que je ne souhaite avoir au centre que le module des nouveaux produits, je veux conserver ma colonne de droite.une astuce ? ;-)Merci par avance Link to comment Share on other sites More sharing options...
liloune89 Posted October 16, 2010 Share Posted October 16, 2010 j'ai finit par aller sur un site http://www.prestacrea.com/modules-prestashop/39-module-prestashop-homenewproducts.htmlle module est tout prêt et identique aux produits phares.j'ai modifié l'affichage car ça ne correspondait pas complètement à ce que je cherchais. 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