Page 64 of 86 FirstFirst ... 1454626364656674 ... LastLast
Results 631 to 640 of 7098

Hybrid View

  1. #1
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Default Re: Image Handler 2 Support

    Quote Originally Posted by SaMortensen View Post
    My problem with image handler is when it is installed it pushes my header down the page a bit, and then when you place your cursor on the + sign of the image, the image appears in the upper left corner of the screen, so I am assuming that this has something to do with why my header is being pushed down -

    can someone help with this?



    Above is a screenshot of the site and my site is:
    Knot & Bauble so you can see for yourself what I am talking about.

    I hope someone has an idea why this is doing this because it has me scratching my head.
    Make sure the style_imagehover.css is in your templates css folder.

    That'll get you every time.
    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

  2. #2
    Join Date
    Jan 2008
    Location
    Minnesota
    Posts
    93
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    It is in the templates/css folder, and as a precaution, I went and added the folders with their files to my current template but it makes no difference it is still doing this.

  3. #3
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Have a Drink Re: Image Handler 2 Support

    Quote Originally Posted by SaMortensen View Post
    It is in the templates/css folder, and as a precaution, I went and added the folders with their files to my current template but it makes no difference it is still doing this.
    Ok, to be a little more clear, I looked at your home page source code:
    <link rel="stylesheet" type="text/css" href="includes/templates/clean_business/css/stylesheet.css" />
    <link rel="stylesheet" type="text/css" href="includes/templates/clean_business/css/stylesheet_css_buttons.css" />
    <link rel="stylesheet" type="text/css" href="includes/templates/clean_business/css/stylesheet_dotline.css" />
    <link rel="stylesheet" type="text/css" media="print" href="includes/templates/clean_business/css/print_stylesheet.css"
    and it is not loading.

    Double check, it looks like it needs to be in THIS folder:
    includes/templates/clean_business/css/

    Try that.
    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

  4. #4
    Join Date
    Jan 2008
    Location
    Minnesota
    Posts
    93
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    That is so bizaar, because it is there. I even just made some changes to the style_imagehover.css file in my clean_business template and then uploaded it, overwriting the file. How do I make sure it loads then?

    http://www.knotnbauble.com/images/Image4.jpg ---> see screenshot
    Last edited by SaMortensen; 4 Feb 2009 at 11:19 PM. Reason: added image

  5. #5
    Join Date
    Feb 2007
    Location
    Pennsylvania
    Posts
    814
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    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
    PHP Code:
      for ($i=0$n=$num_images$i<$n$i++) {
        
    $file $images_array[$i];
        
    $products_image_large str_replace(DIR_WS_IMAGESDIR_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_imageaddslashes($products_name), SMALL_IMAGE_WIDTHSMALL_IMAGE_HEIGHT);
        
    // remove additional single quotes from image attributes (important!)
        
    $thumb_slashes preg_replace("/([^\\\\])'/"'$1\\\''$thumb_slashes);
        
    $thumb_regular zen_image($base_image$products_nameSMALL_IMAGE_WIDTHSMALL_IMAGE_HEIGHT);
        
    $large_link zen_href_link(FILENAME_POPUP_IMAGE_ADDITIONAL'pID=' $_GET['products_id'] . '&pic=' $i '&products_image_large_additional=' $products_image_large); 
    I changed the SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT in both locations in this file to HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT.

    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

  6. #6
    Join Date
    Jan 2007
    Location
    1.5 miles from Home
    Posts
    674
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by bumba000 View Post
    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
    PHP Code:
      for ($i=0$n=$num_images$i<$n$i++) {
        
    $file $images_array[$i];
        
    $products_image_large str_replace(DIR_WS_IMAGESDIR_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_imageaddslashes($products_name), SMALL_IMAGE_WIDTHSMALL_IMAGE_HEIGHT);
        
    // remove additional single quotes from image attributes (important!)
        
    $thumb_slashes preg_replace("/([^\\\\])'/"'$1\\\''$thumb_slashes);
        
    $thumb_regular zen_image($base_image$products_nameSMALL_IMAGE_WIDTHSMALL_IMAGE_HEIGHT);
        
    $large_link zen_href_link(FILENAME_POPUP_IMAGE_ADDITIONAL'pID=' $_GET['products_id'] . '&pic=' $i '&products_image_large_additional=' $products_image_large); 
    I changed the SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT in both locations in this file to HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT.

    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.

  7. #7
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Image Handler 2 Support

    The following historical documents have often been referenced in this thread:

    http://forums.breakmyzencart.com/t68-couple-hints.html
    http://forums.breakmyzencart.com/t73-playing-nice.html

    However, in both instances the links currently result in "This topic does not exist yet" (sic).

    For the benefit of educating myself and others in the subtleties of this wonderful mod, I would greatly appreciate if someone could post or otherwise make available the contents of these documents to this forum.

    TIA

  8. #8
    Join Date
    Mar 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I've been looking for a solution for this for over a month now still cant find it.

    Ive installed Image Handler 2 and Zen lightbox 1.35 and everything works fine except my product info images will not show up...or my watermark images.

    Here's a example here

    Product info images only show up when I upload the MED image as seen here

    I have thousands of products, their has to be an easier way than uploading all the images AGAIN...thx

    If you can help id appreciate it, here's my website www.5starattire.com

  9. #9
    Join Date
    Feb 2009
    Posts
    419
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I just installed the latest version of this contribution.

    Am working on this product:
    http://www.theironhorseman.com/motor...oducts_id=4794

    When I installed the contribution - the popup stopped working ... in that no image shows when the popup appears.

    Yes, all files have been installed correctly.

    Second problem:
    I went into the Manager for IH2 in the admin and tried to add a second image (the back view of the jacket) and I get the following error:

    Error!

    Unable to determine the page link!

    Function used:

    zen_href_link('', '', 'NONSSL')
    How do I fix that since it won't let me upload additional images?

    I don't know why the attibutes and the images sections are STILL a problem with both Osc and Zencart .... they are so anti-tutive. Other carts, you can upload additional images normally and you can add options easily.

    I know I shouldn't complain - am just frustrated that we have been moving from x-cart (which has a great product loading setup) to zencart ... over 4000 products ... and can find no easy way to do the additional images since x-cart named them: d_5000.jpg, d_5001.jpg, d_5002.jpg ... Thusly, I'll have to rename all of them (if and when I can find the approprate ones) and pray they load correctly. Some products have upwards of 12+ additional images!

  10. #10
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by beyre View Post
    rename all of them...
    You don't have to rename anything: IH renames additional images for you.
    Example: you load your main image named Zeke.jpg.
    Always load default largest image, not medium, small etc.
    You load additional image named Pete_SideView.jpg (also default, same procedure).
    IH renames additional to Zeke_01.jpg, etc.

 

 
Page 64 of 86 FirstFirst ... 1454626364656674 ... LastLast

Similar Threads

  1. v150 Image Handler 4 (for v1.5.x) Support Thread
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1687
    Last Post: 17 Nov 2024, 07:26 PM
  2. v139h Image Handler 3 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1095
    Last Post: 2 Oct 2017, 12:42 PM
  3. Image Handler Support Please
    By nadinesky in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 30 Sep 2013, 03:47 PM
  4. Image handler only covers part of screen
    By shaneburton in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 14 May 2009, 07:15 PM
  5. Is Image Handler the only way to go?
    By wwwursa in forum Installing on a Windows Server
    Replies: 2
    Last Post: 23 Dec 2007, 09:22 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg