
Originally Posted by
ctcentralinfo
Just found out that Image handler2 doesn't actually create an image,
it creates cache images
thats whats stored in the BMZ folder. so is their away to get the original files to generate in googlefroogle.php?
function zen_froogle_image_url($products_image) {
global $product_image_module;
if($products_image == "") return "";
require($product_image_module);
return (HTTP_SERVER . DIR_WS_CATALOG . $products_image_large);
If you're using IH handler change
PHP Code:
return (HTTP_SERVER . DIR_WS_CATALOG . $products_image_large);
to
PHP Code:
return (HTTP_SERVER . DIR_WS_CATALOG . DIR_WS_IMAGES . $products_image);
That worked for me but I am not sure if that's the most efficient way to fix the problem.
This option is only if you're using IH2 otherwise the original code should work just fine.
Bookmarks