s.elettronew Posted September 12, 2022 Share Posted September 12, 2022 Ciao, Ho bisogno di aggiungere un secondo "order by" alla query che si occupa di mostrare i prodotti nella pagina categoria. Nel front controller "ProductListingFrontController.php", all'interno della funzione getProductSearchVariables che si occupa appunto di recuperari i prodotti che verranno mostrati in products.tpl , è presente l'Hook actionProductSearchProviderRunQueryAfter che prende in parametro un array con chiave "query" dove viene passato un oggetto con funzione "setSortOrder" che, nel mio caso, prenderà in parametro "product.sales.DESC" (quindi ordinamento per vendite). L'ideale sarebbe quello di aggiungere "ORDER BY quantity DESC" a questo Hook. Ma non ne capisco il funzionament. Qualcuno sa aiutarmi? if (in_array(Tools::getValue('id_category'),$categorieDaFiltrare) && Tools::getValue('order') == null) { $encodedSortOrder = 'product.sales.DESC'; Hook::exec('actionProductSearchProviderRunQueryAfter', array('query' => $query->setSortOrder(SortOrder::newFromString( $encodedSortOrder )))); } Link to comment Share on other sites More sharing options...
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