capclem Posted April 20, 2010 Share Posted April 20, 2010 Bonsoir,Le module Image Enlage V1.3 fonctionne bien sur la page d'accueil affichant les agrandissement dans l'effet loupe, mais n'affiche que les visuels réduits dans les pages les liste de produits, nouveautés et promotions…Quelqu'un aurait-il une solution ?Vous remerciant par avance… Link to comment Share on other sites More sharing options...
pppplus Posted July 21, 2010 Share Posted July 21, 2010 Il faut remplacer dans le fichier imagesenlarge.js var largeImg = imgPath+imgName.substr(0, imgName.length-9)+"-large.jpg"; var thickImg = imgPath+imgName.substr(0, imgName.length-9)+"-thickbox.jpg"; var homeImg = imgPath+imgName.substr(0, imgName.length-9)+"-home.jpg"; var smallImg = imgPath+imgName.substr(0, imgName.length-9)+"-small.jpg"; par var largeImg = imgPath.replace(/-home/,"-large")+imgName.substr(0, imgName.length-9)+".jpg"; var thickImg = imgPath.replace(/-home/,"-thickbox")+imgName.substr(0, imgName.length-9)+".jpg"; var homeImg = imgPath.replace(/-home/,"-home")+imgName.substr(0, imgName.length-9)+".jpg"; var smallImg = imgPath.replace(/-home/,"-small")+imgName.substr(0, imgName.length-9)+".jpg"; Et ça marchera mieux sur la page d'accueil 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