Zangetsu Posted May 17, 2017 Share Posted May 17, 2017 Buenos días, tengo que generar un xml con datos de prestashop y en una de las etiquetas del XML tengo que almacenar la imagen principal del producto y en otras etiquetas las imágenes adicionales del producto. ¿Existe alguna función estilo $link->getProductLink($row["id_product"]) que me devuelva esas URL o como podría obtener esas URL? Gracias!!! Link to comment Share on other sites More sharing options...
Zangetsu Posted May 17, 2017 Author Share Posted May 17, 2017 Buscando en el resto del foro, encontre esto: $id_image = Product::getCover($row["id_product"]);if (sizeof($id_image) > 0) { $image = new Image($id_image["id_image"]); $image_url = _PS_BASE_URL_._THEME_PROD_DIR_.$image->getExistingImgPath().".jpg"; $image_url = $contexto->link->getMediaLink($image_url); } que me devuelve una unica url, como esta: "http://localhost/img/p/1/1.jpg" pero la url que me piden es que sea como esta: http://localhost/1-cart_default/camiseta-destenida-manga-corta.jpg 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