Jump to content

[solved] facebook module in footer


Recommended Posts

You will need to create a new function in modules/blockFacebook/blockFacebook.php

public function hookFooter($params)
{
	return $this->hookDisplayHome($params);
}

This will allow you to hook it to the footer, however bear in mind that this will probably mess the fotoer up and you will need to do additional CSS work to style it properly.

Edited by PSfever.com (see edit history)
  • Like 1
  • Thanks 1
Link to comment
Share on other sites

You will need to create a new function in modules/blockFacebook/blockFacebook.php

public function hookFooter($params)
{
	return $this->hookDisplayHome($params);
}

This will allow you to hook it to the footer, however bear in mind that this will probably mess the fotoer up and you will need to do additional CSS work to style it properly.

 

it works..so that's all what i need when a module can't be hooked in a position?

it works in hookLeftColumn too

Edited by alfredopacino (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...