Page 16 of 39 FirstFirst ... 6141516171826 ... LastLast
Results 151 to 160 of 385
  1. #151
    Join Date
    Jan 2010
    Location
    Australia
    Posts
    239
    Plugin Contributions
    1

    Default Re: Jquery Zoom [Support thread]

    I have installed jqzoom on 1.3.9f but its not working. however i have tested previously with 1.3.8a and it worked fine before.

    Any help

  2. #152
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default Re: Jquery Zoom [Support thread]

    After upgrading to 1.3.9h I want to remove the JQZoom from the database. Can somebody help with uninstall sql? I removed all the files already when I upgraded.

    Uninstall of JQLightbox went well with:
    HTML Code:
    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4
    FROM configuration_group
    WHERE configuration_group_title= 'JQLightbox';
    DELETE FROM configuration WHERE configuration_group_id = @t4;
    DELETE FROM configuration_group WHERE configuration_group_id = @t4;
    Now I only need the sql to remove JQZoom.
    Live and learn... the Zen way.

  3. #153
    Join Date
    Jul 2011
    Posts
    3
    Plugin Contributions
    0

    Default Re: Jquery Zoom [Support thread]

    Quote Originally Posted by kernheimer View Post
    @websmythe, doesn't have the Blingtheme have an easyslider in it?
    so that has got an jscript to.
    Probably that is why it is not working.
    i have the same problem, with a templte from Picazul, also an easyslider in it.

    nothing to do with this great module !
    Hi

    I am hoping someone can help me, I have this same problem both Lightbox and zoom work fine on their own but if I turn them both on together only the lightbox works.

    I have uninstalled and re-installed several times, in the correct order and just found this about a Picazul template with easyslider. I have this too but at the start I removed the slider and can't find any trace of it. In fact I have now tried deleting every js file apart from those associated with the lightbox and zoom and it still doesn't work.

    I have read every post on here and this is the closest I have come but it has still lead to a deadend.

    Any help would be greatly appreciated as I now do not know what to do.

    Have a look at this: http://www.woodburningstovesandflues...wburn-z1-p-224

    BothLightbox and Zoom are enabled.

    I really hope somone can give me some help as this is exactly what I want but just can't get it working.

    Many thanks

    Richard.

  4. #154
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: Jquery Zoom [Support thread]

    any plan on updating this module for 1.5 ? i can really use this module for my project about now

  5. #155
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: Jquery Zoom [Support thread]

    Quote Originally Posted by Waij View Post

    I got it working:
    Just change your jqzoom.php file to this:

    <script language="javascript" type="text/javascript"><!--

    jQuery(document).ready(function($){

    var options = {
    zoomType: "standard",
    zoomWidth: 200,
    zoomHeight: 200,
    xOffset: 10,
    yOffset: 0,
    position: "right",
    lens: true,
    imageOpacity: 0.2,
    title: false,
    showEffect: "show",
    hideEffect: "hide",
    fadeinSpeed: "fast",
    fadeoutSpeed: "slow",
    showPreload: true,
    preloadText: "Loading zoom",
    preloadPosition: "center"
    };

    $("#jqzoomMain").jqzoom(options);

    $(".jqzoom, .jqzoomAdditional").click(function(){return false;});

    $(".jqzoomAdditional").hover(function(){
    var $jqzoomMain = $("#jqzoomMain");
    var $jqzoomMainImg = $("#jqzoomMain").children('img:first');
    var $thisImag = $(this).children('img:first');

    var jqzoomMainHref = $jqzoomMain.attr('href');
    var jqzoomMainImgSrc = $jqzoomMainImg.attr('src');

    $jqzoomMain.attr('href', $(this).attr('href'));
    $jqzoomMainImg.attr('src', $thisImag.attr('src'));

    $(this).attr('href', jqzoomMainHref);
    $thisImag.attr('src', jqzoomMainImgSrc);

    return false;
    }, function(){})
    })
    //--></script>
    problem with jqzoom.php is that , it uses php short tag . and if is not working on any install , it might be due to php short tag turned off by your webserver. no matter if is on or off , you should modify your code to use <?php ?> tag.

    var options = {
    zoomType: "<?php echo JQZOOM_ZOOMTYPE; ?>",
    zoomWidth: <?php echo JQZOOM_ZOOMWIDTH; ?>,
    zoomHeight: <?php echo JQZOOM_ZOOMHEIGHT; ?>,
    xOffset: <?php echo JQZOOM_XOFFSET; ?>,
    yOffset: <?php echo JQZOOM_YOFFSET; ?>,
    position: "<?php echo JQZOOM_POSITION; ?>",
    lens: <?php echo JQZOOM_LENS; ?>,
    imageOpacity: <?php echo JQZOOM_IMAGEOPACITY; ?>,
    title: <?php echo JQZOOM_TITLE; ?>,
    showEffect: "<?php echo JQZOOM_SHOWEFFECT; ?>",
    hideEffect: "<?php echo JQZOOM_HIDEEFFECT; ?>",
    fadeinSpeed: "<?php echo JQZOOM_FADEINSPEED; ?>",
    fadeoutSpeed: "<?php echo JQZOOM_FADEOUTSPEED; ?>",
    showPreload: <?php echo JQZOOM_SHOWPRELOAD; ?>,
    preloadText: "<?php echo JQZOOM_PRELOADTEXT; ?>",
    preloadPosition: "<?php echo JQZOOM_PRELOADPOSITION; ?>"
    };

    this format will work , and will allow you to use your admin to modify your jqzoom :) .

  6. #156
    Join Date
    Jan 2012
    Posts
    62
    Plugin Contributions
    0

    Default Re: Jquery Zoom [Support thread]

    Can anyone confirm this thing works. I installed this and it doesn't work. And I have yet to find a working example. I have Image Handler and Lightbox installed also. It actually broke Lightbox

  7. #157
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: Jquery Zoom [Support thread]

    Quote Originally Posted by bigstore View Post
    Can anyone confirm this thing works. I installed this and it doesn't work. And I have yet to find a working example. I have Image Handler and Lightbox installed also. It actually broke Lightbox
    I designed a site using jqzoom , no image handler or light box .. and is working , zc version 139h. some modification needed to jqzoom file as i mentioned in previous post

  8. #158
    Join Date
    Jul 2010
    Posts
    14
    Plugin Contributions
    0

    Default Re: Jquery Zoom [Support thread]

    Quote Originally Posted by tony_sar View Post
    I designed a site using jqzoom , no image handler or light box .. and is working , zc version 139h. some modification needed to jqzoom file as i mentioned in previous post
    Hi there

    I have installed on zen cart 139h, no additional image plug in, will all business template.

    It has overridden the zen cart image basic function like view large image, all the default related image and click for large image button has gone. The worse thing is, the zoom image doesn't appear.

    I realized the jqzoom version 1.7 no longer come with short tag as mentioned. But it still doesn't work. I have checked the installation many times and no clue what has it gone wrong. able

    This is what i have in the jqzoom.php:

    var options = {
    zoomType: "<?= JQZOOM_ZOOMTYPE; ?>",
    zoomWidth: <?= JQZOOM_ZOOMWIDTH; ?>,
    zoomHeight: <?= JQZOOM_ZOOMHEIGHT; ?>,
    xOffset: <?= JQZOOM_XOFFSET; ?>,
    yOffset: <?= JQZOOM_YOFFSET; ?>,
    position: "<?= JQZOOM_POSITION; ?>",
    lens: <?= JQZOOM_LENS; ?>,
    imageOpacity: <?= JQZOOM_IMAGEOPACITY; ?>,
    title: <?= JQZOOM_TITLE; ?>,
    showEffect: "<?= JQZOOM_SHOWEFFECT; ?>",
    hideEffect: "<?= JQZOOM_HIDEEFFECT; ?>",
    fadeinSpeed: "<?= JQZOOM_FADEINSPEED; ?>",
    fadeoutSpeed: "<?= JQZOOM_FADEOUTSPEED; ?>",
    showPreload: <?= JQZOOM_SHOWPRELOAD; ?>,
    preloadText: "<?= JQZOOM_PRELOADTEXT; ?>",
    preloadPosition: "<?= JQZOOM_PRELOADPOSITION; ?>"
    };






    CJ loader installed as well.

    I got my copy of Jqzoom here:
    http://eazyecommerce.com/platforms/z...es/jquery-zoom

    I hope somebody can help me.

    Thanks

  9. #159
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Jquery Zoom [Support thread]

    If some javascript guru would help me out, I would really appreciate it. Take a look HERE. See the Main Image? It Zooms nicely with the JQZoom. It ALSO shows AND swaps the images via DrByte's "Swap Images via MouseOver or Click".

    Now, the problem(s) is:

    Once the Additional Image is 'swapped' with the Main Image, if you hover over the Main Image (which now shows one of the Additional Images), the Zoom feature shows the wrong image..........see?.............it's the ORIGINAL Main Image that displays in the Zoom window.

    Maybe somebody could look at the site and give me any pointers?

    Another thing is, is that while most of this is working correctly, this site also has IH4 installed on it. When in Admin>Images, you select to zoom small images, it TOTALLY KILLS all display of the Additional Images.


    ANY ideas will be tried, reported back on, and once completed, I'll zip everything up as a new Zoom/Swap module.

    Thanks,
    Robert
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  10. #160
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Jquery Zoom [Support thread]

    Hmmm..........anybody???
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

 

 
Page 16 of 39 FirstFirst ... 6141516171826 ... LastLast

Similar Threads

  1. v153 jQuery Scrolling Sideboxes [Support Thread]
    By lat9 in forum Addon Sideboxes
    Replies: 75
    Last Post: 28 Sep 2021, 03:20 PM
  2. v152 Down for Maintenance jQuery Countdown (Support Thread)
    By rbarbour in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 27 Nov 2015, 03:04 PM
  3. v152 jQuery Banners (Support Thread)
    By rbarbour in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 30 Sep 2015, 02:07 AM
  4. Jquery Lightbox [Support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 257
    Last Post: 2 Aug 2012, 10:57 PM
  5. Is there an add-on combine the functions of AJAX_image_swapper and Jquery Zoom?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 10 Jul 2010, 01:57 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR