Chciałbym podpiąć blok promocji na stronie głównej(na Home Page Tab).
Dodałem ten kod do blockspecial.tpl
public function hookDisplayHomeTab($params)
{
if (!$this->isCached('tab.tpl', $this->getCacheId('specialproducts-tab')))
$this->_cacheProducts();
return $this->display(__FILE__, 'tab.tpl', $this->getCacheId('specialproducts-tab'));
}
public function hookdisplayHomeTabContent($params)
{
if (Configuration::get('PS_CATALOG_MODE'))
return;
// We need to create multiple caches because the products are sorted randomly
$random = date('Ymd').'|'.round(rand(1, max(Configuration::get('BLOCKSPECIALS_NB_CACHES'), 1)));
if (!Configuration::get('BLOCKSPECIALS_NB_CACHES') || !$this->isCached('blockspecials.tpl', $this->getCacheId('blockspecials|'.$random)))
{
if (!($special = Product::getRandomSpecial((int)$params['cookie']->id_lang)) && !Configuration::get('PS_BLOCK_SPECIALS_DISPLAY'))
return;
$this->smarty->assign(array(
'special' => $special,
'priceWithoutReduction_tax_excl' => Tools::ps_round($special['price_without_reduction'], 2),
'mediumSize' => Image::getSize(ImageType::getFormatedName('medium')),
));
}
return $this->display(__FILE__, 'blockspecials.tpl', (Configuration::get('BLOCKSPECIALS_NB_CACHES') ? $this->getCacheId('blockspecials|'.$random) : null));
}
Próbując teraz podpiąć w pozycjach Blok Promocji do DisplayHomeTab lub DisplayHomeTabContent pojawia mi się informacja: "This module cannot be transplanted to this hook." W złym miejscu próbuje podpiąć, co jeszcze powinnem wykonać?
Question
Skarbona
Witam,
Chciałbym podpiąć blok promocji na stronie głównej(na Home Page Tab).
Dodałem ten kod do blockspecial.tpl
Próbując teraz podpiąć w pozycjach Blok Promocji do DisplayHomeTab lub DisplayHomeTabContent pojawia mi się informacja: "This module cannot be transplanted to this hook." W złym miejscu próbuje podpiąć, co jeszcze powinnem wykonać?
Link to comment
Share on other sites
23 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now