Jump to content

Bloc social : Liens sur icônes disparus


Recommended Posts

Bonjour, 

 

Suite à l'installation d'un hook supplémentaire sur la colonne de gauche du bloc social, j'ai perdu mes liens sur mes icônes Fb, T et RSS.

V.1.4.9. / www.artemixdesign.ch

BO/ Modules/ Bloc social/Configurer : les liens sont bien renseignés

J'ai rehooké le bloc social sur le footer, là aussi les liens ont disparu

 

 

Modifs en vert dans blocksocial.php :

 

public function install()
{
return (parent::install() AND Configuration::updateValue('blocksocial_facebook', '') AND Configuration::updateValue('blocksocial_twitter', '') AND Configuration::updateValue('blocksocial_rss', '') AND $this->registerHook('header') AND $this->registerHook('leftColumn'));
}
 
et
 
public function hookFooter()
{
global $smarty;
 
$smarty->assign(array(
'facebook_url' => Configuration::get('blocksocial_facebook'),
'twitter_url' => Configuration::get('blocksocial_twitter'),
'rss_url' => Configuration::get('blocksocial_rss')
));
return $this->display(__FILE__, 'blocksocial.tpl');
}
public function hookLeftColumn($params)
{
return$this->hookFooter($params);
}
 
 
Aurais-je raté qq chose? 

 

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...