
Originally Posted by
ScriptJunkie
1) Yes.
2) Yes.
3) The screen shots are too small to see any detail. If you have any code that conflicts with this mod's code...you will need to merge your files carefully. If you don't know how to do that...best that you hire someone to do it for you. I believe there's a section of the forum that contains a link to a site where one can find individuals proficient in ZC.
thanks - I've already merged what needs to be merged.
the code on the right that's not in the module supplied with this mod is:
PHP Code:
$products_image_base = preg_replace('/'.$products_image_extension.'/', '', $products_image);
$products_image_medium = $products_image_base . IMAGE_SUFFIX_MEDIUM . $products_image_extension;
$products_image_large = $products_image_base . IMAGE_SUFFIX_LARGE . $products_image_extension;
// check for a medium image else use small
if (!file_exists(DIR_WS_IMAGES . 'medium/' . $products_image_medium)) {
$products_image_medium = DIR_WS_IMAGES . $products_image;
} else {
$products_image_medium = DIR_WS_IMAGES . 'medium/' . $products_image_medium;
}
// check for a large image else use medium else use small
if (!file_exists(DIR_WS_IMAGES . 'large/' . $products_image_large)) {
$products_image_large = $products_image_medium;
} else {
$products_image_large = DIR_WS_IMAGES . 'large/' . $products_image_large;
}
which is replaced in the new module supplied in this mod with just the following:
PHP Code:
$products_image_base = preg_replace('/'.$products_image_extension . '$/', '', $products_image);
$products_image_medium = DIR_WS_IMAGES . 'medium/' . $products_image_base . IMAGE_SUFFIX_MEDIUM . $products_image_extension;
$products_image_large = DIR_WS_IMAGES . 'large/' . $products_image_base . IMAGE_SUFFIX_LARGE . $products_image_extension;
I use Beyond Compare from Scooter Software to compare modules - it's great and the free trial never expires.
Bookmarks