Milen Posted December 16, 2014 Share Posted December 16, 2014 Buenos días. Me gustaría modificar el modulo de promociones especiales asi que al home que se muestran los últimos añadidos es decir ordenar por fecha. Gracias Link to comment Share on other sites More sharing options...
Milen Posted December 17, 2014 Author Share Posted December 17, 2014 Nadie tiene idea? Link to comment Share on other sites More sharing options...
galindogadea Posted December 17, 2014 Share Posted December 17, 2014 Prueba cambiar en tu fichero: modules/blockspecials/blockspecials.php Cambiar esto: Product::getPricesDrop((int)$params['cookie']->id_lang, 0, Configuration::get('BLOCKSPECIALS_SPECIALS_NBR')); Teniendo en cuenta que en la clase: /classes/Product.php a la funcion: getPricesDrop Le puedes pasar estos valores: public static function getPricesDrop($id_lang, $page_number = 0, $nb_products = 10, $count = false, $order_by = null, $order_way = null, $beginning = false, $ending = false, Context $context = null) y que date_add es la fecha de alta de los productos. Link to comment Share on other sites More sharing options...
Javier V. Posted May 16, 2016 Share Posted May 16, 2016 Hola Milen, ¿Conseguiste solucionarlo? Se que este post lleva un año y medio abierto pero el tema me interesa. Estoy intentando hacer las pasos que dice "galingogadea" para ordenarlo por fecha, los recientes primero pero no lo tengo claro. ¿Exactamente que debo que poner aqui? Le puedes pasar estos valores: public static function getPricesDrop($id_lang, $page_number = 0, $nb_products = 10, $count = false, $order_by = null, $order_way = null, $beginning = false, $ending = false, Context $context = null) ¿Supongo que aqui "$order_by = null" debo poner "$order_by = date_add"? Muchas gracias Saludos Link to comment Share on other sites More sharing options...
Javier V. Posted May 16, 2016 Share Posted May 16, 2016 SOLUCIONADO Al final añadi este codigo y borre el archivo "class_index" en la carpeta "cache" public static function getPricesDrop($id_lang, $page_number = 0, $nb_products = 10, $count = false, $order_by = date_add, $order_way = desc, $beginning = false, $ending = false, Context $context = null) Saludos Link to comment Share on other sites More sharing options...
vipier Posted September 22, 2020 Share Posted September 22, 2020 On 5/16/2016 at 6:27 PM, Javier V. said: SOLUCIONADO Al final añadi este codigo y borre el archivo "class_index" en la carpeta "cache" public static function getPricesDrop($id_lang, $page_number = 0, $nb_products = 10, $count = false, $order_by = date_add, $order_way = desc, $beginning = false, $ending = false, Context $context = null) Saludos esto me ayudo muchisimo! muchas gracias!! (PS 1.6.1.20) 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