Hi,
Please edit your /components/com_digistore/views/digistoreproducts/tmpl/viewproduct.php and find this piece of code (line 40 aprox.):
if (function_exists("imagecreatefromgif") && (isset ($t[1])) && file_exists($image11)){
$info = getimagesize($image11);
$width="width=".($info[0]+50); $height="height=".($info[1]+50);
} else {
$width=""; $height="";
}
Replace for this:
if (function_exists("imagecreatefromgif") && (isset ($t[1])) && file_exists($image11)){
$info = getimagesize($image11);
$width="width=".($info[0]+50); $height="height=".($info[1]+50);
} else {
$width="X"; $height="Y";
}
Note: X=200 and Y=200Let me know if you have doubts about this.
Best regards,