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,735

Results 3,561 to 3,580 of 7,094
17 Feb 2009, 12:41 AM
#3561
asiaradiosales avatar

asiaradiosales

New Zenner

Join Date:
Apr 2006
Location:
Hong Kong
Posts:
27
Plugin Contributions:
0

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

Please tell me how can i have the IH function work even on the products page under categories.
Please advice. Tophand is actually one of the best people that supports this thread thank you very much for what you do. You deserve all the best from us.

17 Feb 2009, 5:14 AM
#3562
makenoiz avatar

makenoiz

Zen Follower

Join Date:
Mar 2006
Posts:
284
Plugin Contributions:
0

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

Yes, thank you .

17 Feb 2009, 2:57 PM
#3563
bumba000 avatar

bumba000

Totally Zenned

Join Date:
Feb 2007
Location:
Pennsylvania
Posts:
856
Plugin Contributions:
0

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

Bump. . .

17 Feb 2009, 4:15 PM
#3564
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

asiaradiosales:

Please tell me how can i have the IH function work even on the products page under categories.
Please advice. Tophand is actually one of the best people that supports this thread thank you very much for what you do. You deserve all the best from us.

Good work! Your site loads a lot faster and looks great with the fixes.

Not sure what your are asking, post a link to the problem page.
But I'm thinking you need to make size adjustment for product listing.
Admin-->Config-->Images

17 Feb 2009, 4:18 PM
#3565
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

bumba000:

Hi All,
I would like to change the size of my additional images without changing the size of the small images site wide.

In the includes/templates/mytemp/templates/additional_images.php from row 84-95 there is this

for ($i=0, $n=$num_images; $i<$n; $i++) {
$file = $images_array[$i];
$products_image_large = str_replace(DIR_WS_IMAGES, DIR_WS_IMAGES . 'large/', $products_image_directory) . str_replace($products_image_extension, '', $file) . IMAGE_SUFFIX_LARGE . $products_image_extension;
$flag_has_large = true;//file_exists($products_image_large);
$products_image_large = ($flag_has_large ? $products_image_large : $products_image_directory . $file);
$flag_display_large = (IMAGE_ADDITIONAL_DISPLAY_LINK_EVEN_WHEN_NO_LARGE == 'Yes' || $flag_has_large);
$base_image = $products_image_directory . $file;
$thumb_slashes = zen_image($base_image, addslashes($products_name), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
// remove additional single quotes from image attributes (important!)
$thumb_slashes = preg_replace("/([^\\])'/", '$1\'', $thumb_slashes);
$thumb_regular = zen_image($base_image, $products_name, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
$large_link = zen_href_link(FILENAME_POPUP_IMAGE_ADDITIONAL, 'pID=' . $_GET['products_id'] . '&pic=' . $i . '&products_image_large_additional=' . $products_image_large);

> 
> It works fine but it also breaks IH2 small image handling. They no longer pop up on hover.
> 
> I also tried SMALL_IMAGE_WIDTH/2, SMALL_IMAGE_HEIGHT/2
> 
> This works too but once again. . . broken IH2.
> 
> 
> How can I do this without breaking the IH2?
> 
> Thanks in Advance,
>                            John

I'm not a coder.
But might look at how the main image is called on the product info page.
18 Feb 2009, 8:02 PM
#3566
roshlin avatar

roshlin

New Zenner

Join Date:
Jan 2007
Posts:
14
Plugin Contributions:
0

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

Hi friends, :D

Great script, I had it working Ok for a few days, but somehow the images are not bieng zoomed on the main page in the center columns of New, specials, featured products etc. :ohmy:

The zoom is workimg fine in all the scroll side boxes.
It does not work on the category pages, but it does work on the additional images on the product info page.

Just in case it helps, the zoom sign "+" is also not showing, it used to show earlier

I've cleared the cache... and also uploaded all the files again, but no change, please help

Thanks

19 Feb 2009, 2:52 AM
#3567
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

roshlin:

Hi friends, :D

Great script, I had it working Ok for a few days, but somehow the images are not bieng zoomed on the main page in the center columns of New, specials, featured products etc. :ohmy:

The zoom is workimg fine in all the scroll side boxes.
It does not work on the category pages, but it does work on the additional images on the product info page.

Just in case it helps, the zoom sign "+" is also not showing, it used to show earlier

I've cleared the cache... and also uploaded all the files again, but no change, please help

Thanks

If you want that function for those areas then your settings
(Admin-->Config-->Images) need to match for what you for...

Small Image Width 
Small Image Height 

Info for this is already posted in this thread.

19 Feb 2009, 3:11 AM
#3568
belabela avatar

belabela

New Zenner

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

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

I have installed the Admin product images contribution which changes the admin/includes/modules/categories_product_listing.php file to display the product image in admin.

With large images I'm trying to make image handler intercept the zen_image function like it does on the front and show thumbnails rather than the full product listing.

No matter what i seem to do, image handler will not work in admin even though I have tried copying the code for zen_image from the includes/functions/html_output.php file and even manually calling the image handler code that admin/image_handler.php uses to display thumbnails in admin itself. Image Handler php works with thumbnails but nothing else does. It is driving me crazy!

I'm at a loss as to how to make it work - there are no error messages but Image Handler always returns the full image when called from admin, not the bmz_cache path. Has anyone made image handler thumbnail images in admin and if so can they please explain how to do it? Any help would be much appreciated! Hopefully I have posted this question in the right forum.

19 Feb 2009, 6:37 AM
#3569
dfludd avatar

dfludd

New Zenner

Join Date:
Apr 2007
Posts:
24
Plugin Contributions:
0

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

I get the same error did anyone have a solution for this?

19 Feb 2009, 9:23 AM
#3570
roshlin avatar

roshlin

New Zenner

Join Date:
Jan 2007
Posts:
14
Plugin Contributions:
0

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

tophand:

If you want that function for those areas then your settings
(Admin-->Config-->Images) need to match for what you for...

Small Image Width
Small Image Height

>  
> Info for this is already posted in this thread.
 
 
Hi Tophand,
 
Thanks for your quick reply, now it works fine.
 
I had searched the forum before posting, but my search criteria was not thr right one, did not think that the small image size could matter.
 
Thanks again.
19 Feb 2009, 6:22 PM
#3571
robbin21973 avatar

robbin21973

Zen Follower

Join Date:
Feb 2009
Posts:
153
Plugin Contributions:
0

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

I installed this, and now I cannot access the admin part of my site. There is no error message, just a blank page. Help!

www.polishpotterystore/shopping/admin

19 Feb 2009, 11:52 PM
#3572
belabela avatar

belabela

New Zenner

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

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

If you are getting a blank page, install Dr Byte's debugging utility. For admin, just copy the file into admin/includes/extra configures and then look in the cache folder of your site for an error message file that will point you to exactly where your problem is - it's great for debugging blank page errors in zen cart.

http://www.zen-cart.com/index.php?main_page=product_contrib_info&products_id=860

20 Feb 2009, 3:15 AM
#3573
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

robbin21973:

I installed this, and now I cannot access the admin part of my site. There is no error message, just a blank page. Help!

www.polishpotterystore/shopping/admin

You forgot to have ".com" in your url.
When added it works a-ok.

20 Feb 2009, 7:41 AM
#3574
davidandrews avatar

davidandrews

Zen Follower

Join Date:
Apr 2006
Posts:
108
Plugin Contributions:
0

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

HI There
I have a similar problem to what i have searched for previously

Installed zencart, then imagehandler (which works fine)
but as soon as I have installed lightbox, then it stops imagehandler working !! (the images stop hovering)

I have tried searching, but can't see what the fix is?

Using 1.38
zen_lightbox_1-5.zip

confusingly I have found two versions of imagehandler - which is the correct one:
image_handler__for_vx_2-0forzen1-3-7.zip
and
image-handler_2.0-zc13.zip

Perhapsme using the wrong imagehandler files is whats wrong?

If someone could point me in the right direction, i would be so grateful as pretty sure, its user error!

Thanks

20 Feb 2009, 8:17 AM
#3575
davidandrews avatar

davidandrews

Zen Follower

Join Date:
Apr 2006
Posts:
108
Plugin Contributions:
0

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

Think I have realised what it is:

jscript_imagehover.js

is the file which wasn't in my includes/templates/classic/jscript >> folder

Is this what everyone else found? I followed the intructions correctly, its just that installing lightbox broke it!

21 Feb 2009, 12:37 AM
#3576
vandiermen avatar

vandiermen

Totally Zenned

Join Date:
Feb 2007
Posts:
518
Plugin Contributions:
1

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

Just want to say I love the mod.
My recommendation is that it should be added to the stock Zen-Cart. I dont know how it go's on servers with out GD libraries or ImageMagick but probably just makes the system default back to the old image resizing method.
:smile:

21 Feb 2009, 2:27 AM
#3577
salonroyalty avatar

salonroyalty

New Zenner

Join Date:
Feb 2009
Posts:
37
Plugin Contributions:
0

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

I'm having an issue with the hover images displaying too high on the page. I found a few posts where this was discussed but the link to the fix is no longer working. Can someone help with the fix for this?

https://www.salonroyalty.com/zencart

BTW-This is an awesome mod!!:clap:

21 Feb 2009, 6:00 AM
#3578
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

SalonRoyalty:

I'm having an issue with the hover images displaying too high on the page. I found a few posts where this was discussed but the link to the fix is no longer working. Can someone help with the fix for this?

www.salonroyalty.com/zencart

BTW-This is an awesome mod!!:clap:
This maybe of help.
http://www.zen-cart.com/forum/showpost.php?p=517658&postcount=2340

21 Feb 2009, 4:17 PM
#3580
vandiermen avatar

vandiermen

Totally Zenned

Join Date:
Feb 2007
Posts:
518
Plugin Contributions:
1

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

Do you know someone is trying to sell this mod for €257.60 and they have a good google ranking

http://www.trustit.ca/zen-cart-image-handler-2-addon-module-plugin-p-105.html

http://www.trustit.ca/zencart-add-on-modules-installation-configuration-serivces-zen-cart-image-management-addon-modules-plugins-c-36_41.html

there are probably others doing this type of thing, I wonder if the authors know