schattenburg Posted February 8, 2016 Share Posted February 8, 2016 Hola, estoy intentando algo muy sencillo pero no encuentro la forma de hacerlo.Tengo el módulo de Home Featured que se muestra en la portada limitado a solo 8 productos. Ahora mismo me muestra los primeros 8 productos que se metieron y lo que pretendo que se muestren siempre los 8 últimos. Es decir, que la query a la bd que haga lo haga en orden decreciente. Estoy mirando el código de homefeatured.php para poder ordenar la query de forma decreciente pero no veo la manera de hacerlo.¿Alguna idea?Gracias Link to comment Share on other sites More sharing options...
Enrique Gómez Posted February 8, 2016 Share Posted February 8, 2016 Si en el listado de productos filtras por los que están en la categoría inicio podrás ordenar pos posición y vía drag and drop ordenarlos. Este orden es el que cogerá el módulo homefeatured Link to comment Share on other sites More sharing options...
schattenburg Posted February 8, 2016 Author Share Posted February 8, 2016 Ya encontré por mi cuenta la solución, lo dejo aquí por si le sirve a alguien en el futuro, es modificar la línea: HomeFeatured::$cache_products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 8), 'position'); Por: HomeFeatured::$cache_products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 8), 'position', 'DESC'); Saludos Link to comment Share on other sites More sharing options...
Alex Sanchez Posted February 8, 2016 Share Posted February 8, 2016 Muy bien, aunque pienso como Enrique y lo más sencillo es hacerlo como el dijo. 1 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