Jump to content

Polecane/Featured na dole


magisterson

Recommended Posts

Jak w tytule.

 

Jak wyświetlić moduł featured/polecane na dole pod wszelkimi kolumnami?

 

Chciałbym aby moduł był na całą szerokość kontenera głównego - u mnie 1100px;

Oraz by był wyświetlany w takim zestawieniu:

 

[TOP                     STRONY]

[LEWA] [sRODEK] [PRAWA]

[POLECANE    PRODUKTY]

[sTOPKA               SKLEPU]

 

PRESTA 1.5.5.0

Pozdrawiam forumowiczów.

Link to comment
Share on other sites

niestety moduł ten domyslnie nie wspiera stopki. W tym przypadku konieczne będzie zmodyfikowanie pliku .php

 

musisz tam dodać funkcję:

public function hookDisplayFooter($params){if (!$this->isCached('homefeatured.tpl', $this->getCacheId('homefeatured')))
{
$category = new Category(Context::getContext()->shop->getCategory(), (int)Context::getContext()->language->id);
$nb = (int)Configuration::get('HOME_FEATURED_NBR');
$products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 8));
            $products = array_reverse($products);
$this->smarty->assign(array(
'products' => $products,
'add_prod_display' => Configuration::get('PS_ATTRIBUTE_CATEGORY_DISPLAY'),
'homeSize' => Image::getSize(ImageType::getFormatedName('home')),
));
}
return $this->display(__FILE__, 'homefeatured.tpl', $this->getCacheId('homefeatured'));}

następnie za pomocą funkcji "transplant" przepiąć ten moduł do footera, reszta dokładnie jak przedmówca powiedział :)

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