Jump to content

Carousel slider dans le header après le menu


Recommended Posts

Bonjour,

Je oushaite mettre le carousel slider entre le menu et les colonnes, et je galère..........

j'ai créé un hook Topslider - ( dans les ficheir hook et alias )

 

j'ai rajouté dans homeslider.php

 

public function hookTopslider($param)

{

if (!$this->_prepareHook($param) )

return;

$this->context->controller->addJS($this->_path . 'js/jquery.bxSlider.min.js');

$this->context->controller->addCSS($this->_path . 'bx_styles.css');

$this->context->controller->addJS($this->_path . 'js/homeslider.js');

return $this->display(__FILE__, 'homeslider.tpl');

}

 

puis j'ai modifié

 

 

public function install()

{

/* Adds Module */

if (parent::install() && $this->registerHook('topslider') && $this->registerHook('header') && $this->registerHook('actionShopDataDuplication'))

 

/* Sets up configuration */

$res = Configuration::updateValue('HOMESLIDER_WIDTH', '535');

$res &= Configuration::updateValue('HOMESLIDER_HEIGHT', '300');

$res &= Configuration::updateValue('HOMESLIDER_SPEED', '500');

$res &= Configuration::updateValue('HOMESLIDER_PAUSE', '3000');

$res &= Configuration::updateValue('HOMESLIDER_LOOP', '1');

/* Creates tables */

$res &= $this->createTables();

 

/* Adds samples */

if ($res)

$this->installSamples();

 

return $res;

}

return false;

}

 

dans mon header.tpl

<div id="top_slider">

{hook h='displayTopslider' mod='homeslider'}

 

</div>

 

Cela ne fonctionne pas !!!!

Merci de votre aide

Link to comment
Share on other sites

idem

dans homeslider.php

nous avons :

 

public function hookTopslider($param)

{

 

if (!$this->_prepareHook($param) )

return;

 

$this->context->controller->addJS($this->_path . 'js/jquery.bxSlider.min.js');

$this->context->controller->addCSS($this->_path . 'bx_styles.css');

$this->context->controller->addJS($this->_path . 'js/homeslider.js');

return $this->display(__FILE__, 'homeslider.tpl');

}

 

if (parent::install() && $this->registerHook('header') && $this->registerHook('Topslider') && $this->registerHook('actionShopDataDuplication'))

 

et dans header.tpl

{hook h='topslider' mod='homeslider'}

 

dans BO carrousel est noté dans la postion DisplayTopslider

 

Casse tête :(

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