Product image description not tally

http://magento.cybertoads.net/eiregn…e-bra-190.html
When mouse move to small image/thumbnail (the fourth photo), product image description is "Model wears size 32E". But after I click it and move the mouse to large image, the product image description is "Model wears size 32C". So it is not tally. May I know how to solve it?

5 answers

Profile photo of Sherlock 0.00 $tone August 26, 2013
Public

Hi victorlai,

Ok I saw the issue, you can open the file of app\design\frontend\default\jm_lingerietemplate\c atalog\product\view\media.phtml there you would see this javascript function

PHP Code:

                  function changeImage(object,ahref)
        {
             
            $(
'image').src object.href;
            
jQuery("a[rel='ja-colorbox']").attr("href",ahref);
            return 
false;
        } 




change it to

PHP Code:

 function changeImage(object,ahref)
        {
             
            $(
'image').src object.href;
            $(
'image').title jQuery(object).find("img").attr("title");
            
jQuery("a[rel='ja-colorbox']").attr("href",ahref);
            return 
false;
        } 




I hope it helps !

#5

Please login or Register to Submit Answer

Written By

Comments