I can't seem to get the watermarks to work on larger images from additional images. It works fine from the main image, but not the additional images. Does anyone have a suggestion?
I can't seem to get the watermarks to work on larger images from additional images. It works fine from the main image, but not the additional images. Does anyone have a suggestion?
Here's a link to one of my products with multiple images: http://www.poodlesupply.com/store/in...roducts_id=249
Thanks
Looks like a light box problem but I never use lightbox so...
If you look at the image properties (right click) you can see that they are link to shop/images/ instead of shop/bmz_cache/.
So that means IH is not processing those images which is why there is no watermark.
M
tophand, you are so helpful - I see now that zooming in on medium images is not yet implemented. So it says. And this is a medium-sized image (I think).
That means I can't do anything but try to get rid of the "larger image" words. Do you know offhand how that is done?
BUT...
I still don't really follow what is happening because if you go to this page:
[URL="http://www.aapress.com.au/zencart/index.php?main_page=product_info&cPath=1_2&products_id=8[/URL]
...you will see that the zoom works for the two blue books at the bottom. They are medium-sized I think.
I don't know what the point of those two books is either - you can't seem to swivel through to the other three products in that listing. It's all quite strange to me.
Regarding my earlier post:
Watermarks for Additional Images in IH2
I can't seem to get the watermarks to work on larger images from additional images. It works fine from the main image, but not the additional images. Does anyone have a suggestion?
I just figured it out. For those who have the same situation, here's what you do...very simple: Place your additional images in your images folder as usual, with the underscore then identifier, for example, say your main image is tShirt.jpg, your additional image will be called tShirt_ladies.jpg. The Ladies T-Shirt will be the additional image that comes up on your product page, however it won't watermark on the large image unless you place a tShirt_ladies_LRG.jpg in the images>large folder.
I woke up this morning with the revelation, and by golly, it works!
Last edited by panzico; 23 Oct 2008 at 03:44 PM. Reason: Forgot to attach my earlier post for reference
Hi!
I just upgraded a site from 1.3.7 to 1.3.8a- all went fine (whew!) except now the additional images don't show on the product pages - even though the images are in IH tools.
Will I need to clear the bmz cache for the images to show up or will I need to install the patch listed earlier in this thread ~ or both?
Tina
For anyone wanting to know - I cleared the bmz cache AND corrected the includes/classes/bmz_image_handler_class.php and the additional images are back again! Woo Hoo!
Tina
Nice!
I have same problem.
Can you repeat what you have change in the file
(includes/classes/bmz_image_handler_class.php)
Can't find what to change, the thred is so long
TEW
eaglewolf,
The file change I made is as follows ~ just replace the code in the file with this.
Tina// we should parse old parameters here and possibly merge some inc case they're duplicate
$parameters .= ($parameters != '') ? ' ' : '';
if (!($_GET['main_page']==FILENAME_PRODUCT_INFO)) {
return $parameters . 'style="position:relative" onmouseover="showtrail(' . "'$products_image_zoom','$alt',$width,$height,$zoomwidth,$zoomheight,this," . $this->zoom['startx'].','.$this->zoom['starty'].','.$this->zoom['width'].','.$this->zoom['height'].');" onmouseout="hidetrail();" ';
} else {
return $parameters . 'style="position:relative" onmouseover="showtrail(' . "\'$products_image_zoom\',\'$alt\',$width,$height,$zoomwidth,$zoomheight,thi s," . $this->zoom['startx'].','.$this->zoom['starty'].','.$this->zoom['width'].','.$this->zoom['height'].');" onmouseout="hidetrail();" ';
}
}
}
}
}