Prestashop: ordinare i prodotti in offerta dal più recente

Salve, oggi vedremo come ordinare i prodotti in offerta su Prestashop 1.6.x dal più recente.





Nel file
/controllers/front

Sostiruire la riga

$products = Product::getPricesDrop($this->context->language->id, (int)$this->p - 1, (int)$this->n, false, $this->orderBy, $this->orderWay);



con questa: 
/* ADW CUSTOM */
$products = Product::getPricesDrop($this->context->language->id, (int)$this->p - 1, (int)$this->n, false, "date_add", $this->orderWay);

In pratica impostiamo il parametro
"date_add" al posto della variabile "$this->orderBy"

 Fatto!

Commenti