MFLM Posted December 16, 2016 Share Posted December 16, 2016 (edited) Hola a todos Soy nuevo utilizando Prestashop, y ahora me he encontrado con una gran duda. Tengo un código PHP donde con un foreach obtengo el ID y el NOMBRE de las CATEGORIAS de una Tienda: foreach($categories as $cat) { foreach($cat as $c) { $row = array(); $categorie = New Category($c["infos"]["id_category"]); $row['id_category']=$c["infos"]["id_category"]; $row['titre']=$c["infos"]["name"]; foreach ($row as $key => $value) { if ($value == NULL) { $row[$key]=''; } } $resultat[]=$row; } } Todo marcha bien aquí, obtengo lo que deseo, pero a la hora de querer obtener la URL de la imagen me ha fallado, aquí el código: $id_category = $c["infos"]["id_category"]; $image = Image::getCover($id_category); $link = new Link; $row['link'] = $link->getImageLink($categories->link_rewrite, $image['id_image'], 'home_default'); Obtengo una URL pero es de las imágenes de los PRODUCTOS y no de las CATEGORIAS. Un ejemplo de lo que quiero realizar, es el siguiente: Espero puedan ayudarme, gracias por su tiempo Edited December 19, 2016 by MFLM (see edit history) Link to comment Share on other sites More sharing options...
ventura Posted December 17, 2016 Share Posted December 17, 2016 Para las categorias deberás hacerlo con ->getCatImageLink($name, $id_category, $type = null) Link to comment Share on other sites More sharing options...
MFLM Posted December 19, 2016 Author Share Posted December 19, 2016 Para las categorías deberás hacerlo con ->getCatImageLink($name, $id_category, $type = null) Gracias por la respuesta. Me sigue dando el link de la imagen del producto y no de la Categoría. Link to comment Share on other sites More sharing options...
MFLM Posted December 19, 2016 Author Share Posted December 19, 2016 Para las categorias deberás hacerlo con ->getCatImageLink($name, $id_category, $type = null) Ya he comprendido como utilizar lo que me has puesto, ha funcionado de maravilla, gracias 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