Re: Medium product images do not appear

Originally Posted by
markus75
Hello, my site is:
http://footballmaniax.com
Why when i set the language to French, the medium size images do not appear?
Thanks.
It's because you're using an apostrophe in the French version of the text for 'enlarge image' (Agrandir l'image) that is breaking the javascript for the image display. Try redefining your text for 'TEXT_CLICK_TO_ENLARGE' in french.php to be
Code:
define('TEXT_CLICK_TO_ENLARGE', 'Agrandir l´image');
instead of
Code:
define('TEXT_CLICK_TO_ENLARGE', 'Agrandir l'image');
Neville
An assumption is what you arrive at when you get tired of thinking...