gemelos Posted October 8, 2012 Share Posted October 8, 2012 Bonjour, je suis sur prestashop 1.5 dans un module menu que je modifie dans le code php je recup l id produit comment a partir de l id produit , recuperer l url de son image ? j ai aucune info utile avec ca $prod_cat = new Product($id); quel methode je dois utiliser ? merci pour votre aide Link to comment Share on other sites More sharing options...
franckm1000 Posted October 8, 2012 Share Posted October 8, 2012 Méthode Link::getImageLink($rewrite_link, $id-product-$id_image) Link to comment Share on other sites More sharing options...
gemelos Posted October 8, 2012 Author Share Posted October 8, 2012 merci pour votre reponse mais je ne possede pas l id image ni l url rewriting de mon produit comment je fais pour recup ces attributs ? Link to comment Share on other sites More sharing options...
franckm1000 Posted October 8, 2012 Share Posted October 8, 2012 (edited) Essaies un truc comme ça: global $cookie;$product=new Product($id,true,$cookie->id_lang);$images = Image::getImages($cookie->id_lang,$id);$image_link=new Link();$smarty->assign('image_lien',$image_link->getImageLink($product->link_rewrite, $id."-".$images[0]['id_image'])); Où $id est l'id de ton produit. Côté TPL tu récupères avec {$image_lien} De cette façon tu récupères la première image de ton produit ($images[0]['id_image']) J'ai rien testé c'est vraiment pondu comme ça, y a peut être plus simple. Edited October 8, 2012 by franckm1000 (see edit history) 1 Link to comment Share on other sites More sharing options...
Enzorx Posted March 24, 2014 Share Posted March 24, 2014 Merci franckm1000 ! Ton post m'a été très utile, je bloquais dessus depuis 2 heures et je commençais à désespérer. 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