Jump to content

Questo modulo non può essere spostato in questo punto di collegamento.


atomozero

Recommended Posts

Ragazzi ho un problema con una nuova ancora che ho aggiunto al tema, vi riporto la procedura che ho seguito con un prestashop 1.6.0.6:

 

al file  file classes/controller/FrontController.php

 

ho aggiunto 

'HOOK_TOP_CENTER' => Hook::exec('displayTopCenter'),

ottenendo:

$this->context->smarty->assign(array(
'HOOK_HEADER' => $hook_header,
'HOOK_TOP' => Hook::exec('displayTop'),
'HOOK_TOP_CENTER' => Hook::exec('displayTopCenter'),
'HOOK_LEFT_COLUMN' => ($this->display_column_left ? Hook::exec('displayLeftColumn') : ''),
'HOOK_RIGHT_COLUMN' => ($this->display_column_right ? Hook::exec('displayRightColumn', array('cart' => $this->context->cart)) : ''),
'HOOK_FOOTER' => Hook::exec('displayFooter')
));

nel database ho aggiunto alla tabella ps_hook la riga relativa all'ancora

VALUES ( NULL , 'DisplayTopCenter', 'Top of Center', NULL , '1');

nel modulo che mi interessava ho aggiunto la funzione 

function hooktopCenter($params){
global $smarty, $link;
 
$smarty->assign(array(
'manufacturers' => Manufacturer::getManufacturers(),
'link' => $link,
'text_list' => Configuration::get('MANUFACTURER_DISPLAY_TEXT'),
'text_list_nb' => Configuration::get('MANUFACTURER_DISPLAY_TEXT_NB'),
'form_list' => Configuration::get('MANUFACTURER_DISPLAY_FORM'),
'display_link_manufacturer' => Configuration::get('PS_DISPLAY_SUPPLIERS'),
));
return $this->display(__FILE__, 'blockmanufacturer.tpl');
}

e infine nel file del thema header.tpl ho aggiunto la riga nella posizione che mi interessava:

<div id="header_right"> {$HOOK_Top_Center} </div>

nella sezione moduli poi ho cercato di aggrappare il modulo all'ancora ma ottengo un errore

 

Questo modulo non può essere spostato in questo punto di collegamento.

 

:( avete idea di dove posso aver sbagliato?

grazie

Andrea

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