我想在自定义产品列表上应用图层导航(ps_facetedsearch)。我正在使用prestashop 1.7。我必须添加什么才能做到这一点?
我的列表$product_list
是产品ID的数组。
我的自定义模板上的产品列表可以,但是我不知道我该怎么做过滤器。
$listing['products'] = json_decode(json_encode($product_list), true);
$listing['rendered_facets']="Filtrer par";
$listing['rendered_active_filters']="";
$listing['label']="Resultats de recherche";
$listing['js_enabled']=false;
$listing["sort_orders"]=array(array("entity" => "product",
"field" => "position",
"direction" => "asc",
"label" => "Pertinence",
"urlParameter" => "product.position.asc",
"current" => true,
"url" => "?order=product.position.asc"));
$listing["facetCollection"]=array("facets" =>array("label" => "Catégories", "type" => "category", "displayed" => true));
$this->context->smarty->assign("listing", $listing);
感谢您的回答。