Jump to content

Blok na stronie produktu


datalux

Recommended Posts

Jak dodać w Prestashop 1.6 na stronie produktu blok z czterema produktami tej samej kategorii i czterema produktami tego samego producenta co produkt losowo wybranymi ? Co trzeba zmienic w pliku \themes\nazwa_szablonu\product.tpl ? Co zmienić w innych plikach ?

Link to comment
Share on other sites

W ProductController.php w initContent() dajesz:

// pobierasz kategorie
$category = new Category(idWybranejKategorii);

// pobierasz 4 produkty z kategorii
$products = $category->getProducts($this->context->language->id, 1, 4);

// przesyłasz produkty do tpl
$this->context->smarty->assign('customCategoryProducts', $products);

i w szablonie używasz zmiennej $customCategoryProducts

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