Zen Cart Logo
Forums / All Other Contributions/Addons / Image Handler 2 (for ZC v1.3.8 ONLY) Support

Image Handler 2 (for ZC v1.3.8 ONLY) Support

Views: 2,510,729

Results 3,121 to 3,140 of 7,094
3 Nov 2008, 6:13 PM
#3121
ckosloff avatar

ckosloff

Totally Zenned

Join Date:
Feb 2007
Location:
South Florida, USA
Posts:
1,375
Plugin Contributions:
0

Image Handler 2 (for ZC v1.3.8 ONLY) Support

doodlebee:

http://www.somesite.com/breakfast-goodies-c-2_6.html
You are also using redirection, some SEO contrib., check that one too.

3 Nov 2008, 7:09 PM
#3122
tech9 avatar

tech9

New Zenner

Join Date:
Jun 2008
Posts:
4
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

andy1234:

Hi everybody,

I have just installed IH2 on zen cart 1.3.5 and everything seems to be working fine except zooming on mouseover. Nothing is happening when I hover over the smal product image. What is wrong?

Plrase, help

Thanks

Andy

I am having the same trouble, seems to be in the Jscript file causing the problems. Anyone fixed this?

3 Nov 2008, 9:02 PM
#3123
tech9 avatar

tech9

New Zenner

Join Date:
Jun 2008
Posts:
4
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

tech9:

I am having the same trouble, seems to be in the Jscript file causing the problems. Anyone fixed this?

Ok, i fixed this problem.

Put both of the JSCRIPT files in the includes/templates/YOURTEMPLATE/jscript folder not in the includes/templates/template_default/jscript folder.

4 Nov 2008, 3:58 PM
#3124
dmagic avatar

dmagic

Totally Zenned

Join Date:
Oct 2008
Posts:
594
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

i have Zen Cart v1.3.8a
what the last version to install ?

Thank you.

4 Nov 2008, 7:52 PM
#3125
mooncatcher avatar

mooncatcher

New Zenner

Join Date:
Jun 2008
Posts:
21
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

I hope you don't mind I didn't read all the 300 pages here, but I want to get some insight of what's happening here.

I've installed IH2 and it works....so far...

When I go with my mouse over the + my pop-up will be at the top of my page and my additional images are at the bottom, so I only see the bottom of the pop-up

Sometimes it displays next to the image so it can do it right but most of the time it's at the top

Where and how can I change this?

5 Nov 2008, 4:15 AM
#3127
tophand avatar

tophand

Totally Zenned

Join Date:
Jan 2007
Location:
1.5 miles from Home
Posts:
674
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

MoonCatcher:

I hope you don't mind I didn't read all the 300 pages here, but I want to get some insight of what's happening here.

I've installed IH2 and it works....so far...

When I go with my mouse over the + my pop-up will be at the top of my page and my additional images are at the bottom, so I only see the bottom of the pop-up

Sometimes it displays next to the image so it can do it right but most of the time it's at the top

Where and how can I change this?

A link helps us help you.

5 Nov 2008, 7:41 AM
#3128
mooncatcher avatar

mooncatcher

New Zenner

Join Date:
Jun 2008
Posts:
21
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

ok sorry

the link will be http://scrappythoughts.com/Shoppe

5 Nov 2008, 10:52 AM
#3130
mooncatcher avatar

mooncatcher

New Zenner

Join Date:
Jun 2008
Posts:
21
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

thnx that did the trick :smile:

6 Nov 2008, 12:30 AM
#3131
ckosloff avatar

ckosloff

Totally Zenned

Join Date:
Feb 2007
Location:
South Florida, USA
Posts:
1,375
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

tophand:

Look at this.

http://www.zen-cart.com/forum/showpost.php?p=517658&postcount=2340
Tophand,
I have installed the latest version of IH2 on my 1.3.8a site and works fine.
What other files have been contributed that I could test, apart from the one you mention?
Sorry, but this thread is getting humongous, and I cannot find all the latest files.
Maybe the contribution needs a rewrite?
Thanks.

6 Nov 2008, 6:00 AM
#3132
chuckp avatar

chuckp

New Zenner

Join Date:
Nov 2008
Posts:
1
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

This thread is getting really long and difficult to search. With that said, after installing IH, everything worked fine except for the large image popup. Since the site in question (https://www.rondogphotog.com/zencart) sells prints of the images, it is very important to only present images with the copyright watermark, and the popup was referencing the raw image. It took a bit to track down where things were happening, bit I was able to get the following fix to work acceptably. The only issue I have now is the need to use popupWindowPrice, as the plain popupWindow function doesn't automatically resize...

Any comments or suggestions are welcomed.

Replace /includes/templates/<your custom>/templates/tpl_modules_main_product_image.php with the following:

<?php /** * Module Template * * @package templateSystem * @copyright Copyright 2003-2005 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0 * @version $Id: tpl_modules_main_product_image.php 3208 2006-03-19 16:48:57Z birdbrain $ */ ?> <?php require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_MAIN_PRODUCT_IMAGE)); $imgsrc=handle_image($products_image_large, $products_name, LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT); ?> <div id="productMainImage" class="centeredContent back"> <script language="javascript" type="text/javascript"><!-- document.write('<?php echo '<a href="javascript:popupWindowPrice(\\\'' . HTTP_SERVER . DIR_WS_CATALOG . $imgsrc[0] . '\\\')">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>'; ?>'); //--></script> <noscript> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . $imgsrc[0] . '" target="_blank">' . zen_image($products_image_medium, $products_name, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>'; ?> </noscript> </div>
7 Nov 2008, 6:21 PM
#3133
leavellwd avatar

leavellwd

New Zenner

Join Date:
Nov 2008
Posts:
25
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

I have installed IH2 for one of my clients. the only problem I am having thus far is not being able to put a border around the images.

Is there an area I can add the {border: .5; border-color:#708773 } code so that the images handles by IH2 will automatically place a boarder around the image.

I currently have the {border: .5; border-color:#708773 } code in my stylesheet.css but this does not put a border around the images handled with IH2

Any help would be appreciated. thanks

7 Nov 2008, 8:24 PM
#3134
dmagic avatar

dmagic

Totally Zenned

Join Date:
Oct 2008
Posts:
594
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

i install the mod in my zen cart here
but i don'T SEE anthing ... '

what need to do see this in auction ?

http://www.trickid.co.il/

Thanks .

9 Nov 2008, 12:20 AM
#3135
dmagic avatar

dmagic

Totally Zenned

Join Date:
Oct 2008
Posts:
594
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

please need help
what the problem ? why i can't see the ih2 in auction in my site ?

www.trickid.co.il

somtime when i try upload file from Image Handler2
so i got this error Error TEXT_MSG_NOUPLOAD_LARGE

Thanks for help

9 Nov 2008, 7:10 AM
#3136
tophand avatar

tophand

Totally Zenned

Join Date:
Jan 2007
Location:
1.5 miles from Home
Posts:
674
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

dmagic:

please need help
what the problem ? why i can't see the ih2 in auction in my site ?

www.trickid.co.il

somtime when i try upload file from Image Handler2
so i got this error Error TEXT_MSG_NOUPLOAD_LARGE

Thanks for help

Have you doubled check that you uploaded "All" the IH files?

9 Nov 2008, 6:23 PM
#3137
leavellwd avatar

leavellwd

New Zenner

Join Date:
Nov 2008
Posts:
25
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

leavellwd:

I have installed IH2 for one of my clients. the only problem I am having thus far is not being able to put a border around the images.

Is there an area I can add the {border: .5; border-color:#708773 } code so that the images handles by IH2 will automatically place a boarder around the image.

I currently have the {border: .5; border-color:#708773 } code in my stylesheet.css but this does not put a border around the images handled with IH2

Any help would be appreciated. thanks

does anyone know how to put a border around the pictures?

9 Nov 2008, 8:00 PM
#3138
tophand avatar

tophand

Totally Zenned

Join Date:
Jan 2007
Location:
1.5 miles from Home
Posts:
674
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

leavellwd:

does anyone know how to put a border around the pictures?

In your stylesheet find:
a img

a img {border: .5; border-color:#708773; }
10 Nov 2008, 6:55 AM
#3139
qwert302 avatar

qwert302

Zen Follower

Join Date:
Mar 2008
Posts:
148
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Ok, so I'm moving one of my sites to a new Godaddy Virtual Dedicated server. I've got everything working except for IH2. When I uninstall it from the database the site works fine, but when it is installed I get lots of randomly blank content. I'm not sure what is causing it.

Take a look at my test site and see if you can give me any pointers. Thank you very much.

10 Nov 2008, 10:29 AM
#3140
jvanree avatar

jvanree

Zen Follower

Join Date:
Mar 2008
Location:
Gouda, Netherlands
Posts:
211
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

On this url http://www.shona-stoneart.nl I have installed IH2

I have the image hover working on product listing but I can't get it to work on the main product image (when you view a product page)

My settings are as followes:

Small Image Width  	100  	Informatie 
Small Image Height 	80 	Informatie 
Heading Image Width - Admin 	57 	Informatie 
Heading Image Height - Admin 	40 	Informatie 
Subcategory Image Width 	100 	Informatie 
Subcategory Image Height 	80 	Informatie 
Calculate Image Size 	true 	Informatie 
Image Required 	true 	Informatie 
Image - Shopping Cart Status 	1 	Informatie 
Image - Shopping Cart Width 	100 	Informatie 
Image - Shopping Cart Height 	80 	Informatie 
Category Icon Image Width - Product Info Pages 	100 	Informatie 
Category Icon Image Height - Product Info Pages 	80 	Informatie 
Top Subcategory Image Width 	100 	Informatie 
Top Subcategory Image Height 	80 	Informatie 
Product Info - Image Width 	300 	Informatie 
Product Info - Image Height 	240 	 
Product Info - Image Medium Suffix 	_MED 	Informatie 
Product Info - Image Large Suffix 	_LRG 	Informatie 
Product Info - Number of Additional Images per Row 	3 	Informatie 
Image - Product Listing Width 	100 	Informatie 
Image - Product Listing Height 	80 	Informatie 
Image - Product New Listing Width 	100 	Informatie 
Image - Product New Listing Height 	80 	Informatie 
Image - New Products Width 	100 	Informatie 
Image - New Products Height 	80 	Informatie 
Image - Featured Products Width 	100 	Informatie 
Image - Featured Products Height 	80 	Informatie 
Image - Product All Listing Width 	100 	Informatie 
Image - Product All Listing Height 	80 	Informatie 
Product Image - No Image Status 	1 	Informatie 
Product Image - No Image picture 	no_picture.gif 	Informatie 
Image - Use Proportional Images on Products and Categories 	1 	Informatie 
IH resize images 	yes 	Informatie 
IH small image filetype 	no_change 	Informatie 
IH small image background 	255:255:255 	Informatie 
IH watermark small images 	no 	Informatie 
IH zoom small images 	yes 	Informatie 
IH small image hotzone 	no 	Informatie 
IH small image compression quality 	85 	Informatie 
IH medium image filetype 	no_change 	Informatie 
IH medium image background 	255:255:255 	Informatie 
IH watermark medium images 	no 	Informatie 
IH zoom medium images 	yes 	Informatie 
IH medium image hotzone 	no 	Informatie 
IH medium image compression quality 	85 	Informatie 
IH large image filetype 	no_change 	Informatie 
IH large image background 	255:255:255 	Informatie 
IH watermark large images 	no 	Informatie 
IH large image compression quality 	85 	Informatie 
IH large image maximum width 	750 	Informatie 
IH large image maximum height 	550 	Informatie 
IH watermark gravity 	Center 	Informatie 
IH zoom gravity 	SouthEast 	Informatie 

Can someone please help me out?