Jump to content

pb pour faire apparaitre un module


ecat

Recommended Posts

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 module

ceci 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

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

  • 1 year later...

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...