Page 225 of 373 FirstFirst ... 125175215223224225226227235275325 ... LastLast
Results 2,241 to 2,250 of 3726
  1. #2241
    Join Date
    Apr 2004
    Posts
    191
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by frank18 View Post
    Using the search facility on top of this page (Search This Thread), search for the word 'Chrome' . This gives you all (about 40 or 50) posts dealing with the solution of this problem.
    I did just that and tried one solution but did not work.

    Do you have any clue which one will work?

    Has the download been fixed because it's really frustrating.

    Thanks.

  2. #2242
    Join Date
    Apr 2004
    Posts
    191
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    SOLVED...had to re-write some of code now it will work either on a fresh install or upgrade.

  3. #2243
    Join Date
    May 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    I'm not getting it fixed as written a few pages back...
    - Replaced the slimbox.php
    - Downloaded the file from mootools.net and transfered the content to the 2 files in /jscript of my template.....


    This is my website: PLEASE DO NOT TYPE THE NAME HERE:
    http://bit.ly/hBSqns


    Thanks in advance..
    BTW, it does work in IE

  4. #2244
    Join Date
    Nov 2009
    Posts
    285
    Plugin Contributions
    5

    Default Re: Zen Lightbox...

    Hi All, I've taken some time and updated Zen Lightbox to 1.6b
    • Compatibility with ZC 1.3.9h
    • Migrated to jQuery from MooTools
    • Updated to latest slimbox 2.04
    • Updated stylesheet to match latest slimbox


    I've tested installing it a few times and it seems to be working OK, but I'd like a few other brave souls to uninstall ver1.5 and give it a try before loading it on the Add-Ons page.

    Note: I have only tested this with ZC 1.3.9h so if anyone has ver a-g that could test it too that would be great.

    hope this helps to solve the 1.5 issues.

    Its too large to attach, so here is a link:
    http://goo.gl/iReTy

    you can see it working smoothly at:
    http://luckypuppyonline.com

    daniel

  5. #2245
    Join Date
    Apr 2004
    Posts
    191
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by niestudio View Post
    Hi All, I've taken some time and updated Zen Lightbox to 1.6b
    • Compatibility with ZC 1.3.9h
    • Migrated to jQuery from MooTools
    • Updated to latest slimbox 2.04
    • Updated stylesheet to match latest slimbox


    I've tested installing it a few times and it seems to be working OK, but I'd like a few other brave souls to uninstall ver1.5 and give it a try before loading it on the Add-Ons page.

    Note: I have only tested this with ZC 1.3.9h so if anyone has ver a-g that could test it too that would be great.

    hope this helps to solve the 1.5 issues.

    Its too large to attach, so here is a link:
    http://goo.gl/iReTy

    you can see it working smoothly at:
    http://luckypuppyonline.com

    daniel

    Did not work. Sorry.

  6. #2246
    Join Date
    Aug 2010
    Posts
    3
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by niestudio View Post
    Hi All, I've taken some time and updated Zen Lightbox to 1.6b
    • Compatibility with ZC 1.3.9h
    • Migrated to jQuery from MooTools
    • Updated to latest slimbox 2.04
    • Updated stylesheet to match latest slimbox


    I've tested installing it a few times and it seems to be working OK, but I'd like a few other brave souls to uninstall ver1.5 and give it a try before loading it on the Add-Ons page.

    Note: I have only tested this with ZC 1.3.9h so if anyone has ver a-g that could test it too that would be great.

    hope this helps to solve the 1.5 issues.

    Its too large to attach, so here is a link:
    http://goo.gl/iReTy

    you can see it working smoothly at:
    http://luckypuppyonline.com

    daniel
    after I removed v1.5 and installed v1.6 my homepage still works fine, but product listing page was blank, should be something wrong made product listing page can't show up. I use sql file to remove it now.

    Still thank so much for your contribution, wait for newer version.

  7. #2247
    Join Date
    Oct 2010
    Posts
    84
    Plugin Contributions
    2

    Default Re: Zen Lightbox...

    The blank screen error is to do with options.php. When I checked the debug logs it came up with ...

    Code:
    syntax error, unexpected T_ELSE in /home/.../public_html/includes/classes/zen_lightbox/options.php on line 53
    So I took a look at the code and I'm not sure if its a typo but if you look around line 53 you will see

    Code:
    if (ZEN_LIGHTBOX_KEYBOARD_NAVIGATION == 'true') 
    {
    	echo str_replace(' ', '', ZEN_LIGHTBOX_NEXT_KEYS); 
    }
    echo ']';
    else 
    {
    	echo 'false'; 
    }
    ?>
    If you look I've highlighted the offending echo in red You need to move this. I'm not sure where it's meant to go or if its even meant to be there but for a quick fix I just moved it to the bottom of the file. for E.G...

    Code:
    if (ZEN_LIGHTBOX_KEYBOARD_NAVIGATION == 'true') 
    {
    	echo str_replace(' ', '', ZEN_LIGHTBOX_NEXT_KEYS); 
    }
    else 
    {
    	echo 'false'; 
    }
    echo ']';
    Hope this helps Sorry about the long winded explanation but I find if I explain things like this it helps people debug errors in the future ;)
    Last edited by drgr33n; 21 Dec 2010 at 02:38 PM.

  8. #2248

    Default Re: Zen Lightbox...

    Thanks for the info....
    ##############################___
    Japan has opened.
    gclub new model for Health called on signing. gclub sure enough.

  9. #2249
    Join Date
    Nov 2009
    Posts
    285
    Plugin Contributions
    5

    Default Re: Zen Lightbox...

    Hey All, Sorry about the issue with the options.php file, I did some last minute edits on it and forgot to re-zip the folder.
    the line echo ']'; should be the last line before ?>

    I've updated the zip file with the options file updated

    Here is a link to a new file
    http://goo.gl/fCENH

    Daniel

  10. #2250
    Join Date
    Apr 2004
    Posts
    191
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Kudos to Daniel for such great work and effort.

    Works on a new install however if you have previous Zens...the image does appear but the next, previous, close images do not show up when trying to close the zen light box.

    Frank

 

 

Similar Threads

  1. Free Shipping Rules addon [Support Thread]
    By numinix in forum Addon Shipping Modules
    Replies: 36
    Last Post: 2 Dec 2016, 01:56 PM
  2. v151 Reviews Reply addon [Support Thread]
    By mikestaps in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 17 Oct 2014, 01:29 AM
  3. Jquery Lightbox [Support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 257
    Last Post: 2 Aug 2012, 10:57 PM
  4. File Upload Required addon [Support Thread]
    By 1100101 in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 10 Dec 2011, 03:00 AM
  5. [Support Thread] IE only JavaScripts and Stylesheets Addon
    By Meshach in forum All Other Contributions/Addons
    Replies: 16
    Last Post: 31 May 2011, 08:18 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