Page 1 of 2 12 LastLast
Results 1 to 10 of 3727

Hybrid View

  1. #1
    Join Date
    Feb 2008
    Posts
    23
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    No worries. It just would be nice to have my additional images do that cool lightbox effect. I'll try Hoverbox or keep toying around till something works.

    If anyone else knows how to make Lighbox work with a store bought template, please let me know. If I find a fix to get this thing working, I'll post... till then.

    Much regards

  2. #2
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,700
    Plugin Contributions
    11

    Default Re: Zen Lightbox...

    ironware,
    search the forum with the name of your template provider and you may find some insight as to whether or not you can make it work. If you're using a Template Monster template the outlook is bleak at best.

    I have found that IH2 and lightbox is not workable on my new sites using 1.3.8a and 5.2+ PHP. Probably something in the lightbox code.

    I have taken most of them to Fual slimbox or disabled lightbox altogether.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  3. #3
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,700
    Plugin Contributions
    11

    Default Re: Zen Lightbox...

    Quote Originally Posted by dbltoe View Post
    ironware,
    search the forum with the name of your template provider and you may find some insight as to whether or not you can make it work. If you're using a Template Monster template the outlook is bleak at best.

    I have found that IH2 and lightbox is not workable on my new sites using 1.3.8a and 5.2+ PHP. Probably something in the lightbox code.

    I have taken most of them to Fual slimbox or disabled lightbox altogether.
    Sorry - spellchecker changed ironcross
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  4. #4
    Join Date
    Jan 2006
    Location
    Downunder - QLD - Gold Coast
    Posts
    964
    Plugin Contributions
    0

    Default Zen lightbox popup appears under the horizontal menu

    Zen lightbox popup appears under the custom horizontal menu.

    Any chance making appear above all ??

    Under I mean it appears between the html page and the menu bar it self. Its a ALL menu Java menu I am using
    Downunder QLD

  5. #5
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,700
    Plugin Contributions
    11

    Default Re: Zen Lightbox...

    Sorry,
    I have no idea what you're talking about. Perhaps a link?
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  6. #6
    Join Date
    Jan 2006
    Location
    Downunder - QLD - Gold Coast
    Posts
    964
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Downunder QLD

  7. #7
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,700
    Plugin Contributions
    11

    Default Re: Zen Lightbox...

    The problem is with the code for whatever you are using for the menu. Somewhere it's being told to stay "on top".
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  8. #8
    Join Date
    Mar 2005
    Posts
    144
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Hi..

    I have IH2 installed, and have installed Lightbox.. When installing lightbox, on the product page, the entire page doesn't display.

    It cuts off write at:

    <div id="productMainImage" class="centeredContent back">
    <!-- bof Zen Lightbox v1.4 aclarke 2007-09-15 -->

    There is NO html code below that. If I overwirte with the original tpl_modules_main_product_image.php file from my template, everything works fine.. I can't find a bit of code in the lightbox modified file that would cause this. Any suggestions?

    Thanks
    Davi

  9. #9
    Join Date
    Mar 2005
    Posts
    144
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by dwessell View Post
    Hi..

    I have IH2 installed, and have installed Lightbox.. When installing lightbox, on the product page, the entire page doesn't display.

    It cuts off write at:

    <div id="productMainImage" class="centeredContent back">
    <!-- bof Zen Lightbox v1.4 aclarke 2007-09-15 -->

    There is NO html code below that. If I overwirte with the original tpl_modules_main_product_image.php file from my template, everything works fine.. I can't find a bit of code in the lightbox modified file that would cause this. Any suggestions?

    Thanks
    Davi
    I've narrowed it down to:

    if (ZEN_LIGHTBOX_STATUS == 'true') {

    echo '<script language="javascript" type="text/javascript"><!--
    document.write(\'<a href="' . zen_lightbox($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($zen_lightbox_products_name) . '">' . 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>';

    } else {

    Code:
    echo '<script language="javascript" type="text/javascript"><!--
    document.write(\'<a href="javascript:popupWindow(\\\'' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '\\\')">' . 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>';
    
    }
    There's something in that code that stops the HTML output, but I can't been able to figure it out yet..

    Thanks
    David

  10. #10
    Join Date
    Mar 2005
    Posts
    144
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Sorry, screwed that code paste up.. The offending code is:

    Code:
    echo '<script language="javascript" type="text/javascript"><!--
    document.write(\'<a href="' . zen_lightbox($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($zen_lightbox_products_name) . '">' . 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>';

 

 
Page 1 of 2 12 LastLast

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

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