Jump to content

Problème rencontré avec le module Image enlarge sous PS 1.2.5


capclem

Recommended Posts

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

  • 3 months later...

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...