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
Hi mate,
The page you gave is 404 not found, Is the problem still there ?
the link no problem. I just try.
Do you mind attach a screenshot here to describe the issue ? beside don’t you see the page of http://magento.cybertoads.net/eiregn…e-bra-190.html is a 404 not Found page ?
this is correct link: http://magento.cybertoads.net/eiregn…e-bra-189.html
Please do check the error.
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 !