LuMIT Posted January 18, 2012 Share Posted January 18, 2012 Bonjour, Je rencontre un problème dans le backoffice (et même dans le frontoffice), en effet, un même produit s'affiche plusieurs fois (avec le même ID). Avez vous déjà rencontré ce problème ? Merci de votre aide. Ludwig. Link to comment Share on other sites More sharing options...
LuMIT Posted January 18, 2012 Author Share Posted January 18, 2012 J'ai trouvé le problème. En fait dans Prestashop 1.4.6.2, lorsque l'on ajoute un fichier ZIP contenant des images pour un article et que l'on coche "Utiliser comme image par défaut", Prestashop attribut chaque image en tant qu'image par défaut, ce qui provoque l'affichage en plusieurs fois (pour chaque image par défaut). Pour résoudre ce problème : Dans dossier web "admin x x x " => "tabs" il faut modifier le fichier AdminProducts.php Il faut ajouter if (($cover = Tools::getValue('cover')) == 1) Image::deleteCover($product->id); En dessous de $image->position = ++$highestPosition; public function uploadImageZip($product) { [...] $image->position = ++$highestPosition; //Supprimer l'image par défaut if (($cover = Tools::getValue('cover')) == 1) Image::deleteCover($product->id); [...] } En espérant aider les futurs utilisateurs et corriger la future version. Ludwig. 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