Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Jul 2007
    Posts
    342
    Plugin Contributions
    7

    Default Additional images and Zen Lightbox

    Hi
    Can anyone help please.
    I have an issue with additional images not showing with Zen Lightbox.
    I downloaded the additional images module so that images names would not need to be changed. This all seems to be working in the admin area OK.
    But the additional images although seen on the web page will not work in Zen Lightbox.
    The source code shows that this is not working:

    <div id="productMainImage" class="centeredContent back">
    <script language="javascript" type="text/javascript"><!-- document.write('<a href="images/sept_1.jpg" rel="lightbox-g" title="MAZDA BONGO 2002 2.0 LTR AERO / DUE SOON FROM JAPAN"><img src="images/sept_1.jpg" alt="MAZDA BONGO 2002 2.0 LTR AERO / DUE SOON FROM JAPAN" title=" MAZDA BONGO 2002 2.0 LTR AERO / DUE SOON FROM JAPAN " width="200" height="200" /><br /><span class="imgLink">larger image</span></a>'); //--></script> <noscript> <a href="http://www.website.com/index.php?main_page=popup_image&amp;pID=281&amp;zenid=ds441d45v3dvflphao9vi70em2 " target="_blank"><img src="images/sept_1.jpg" alt="MAZDA BONGO 2002 2.0 LTR AERO / DUE SOON FROM JAPAN" title=" MAZDA BONGO 2002 2.0 LTR AERO / DUE SOON FROM JAPAN " width="200" height="200" /><br /><span class="imgLink">larger image</span></a></noscript> </div>
    <!--eof Main Product Image-->
    <!--bof Additional Product Images --> <div id="productAdditionalImages"> <div class="additional-images"><img src="images/additional/sept_2.jpg" alt="" width="200" height="150" /></div><br/><div class="additional-images"><img src="images/additional/sept_3.jpg" alt="" width="200" height="200" /></div><br/><div class="additional-images"><img src="images/additional/sept_4.jpg" alt="" width="200" height="150" /></div><br/><div class="additional-images"><img src="images/additional/sept_5.jpg" alt="" width="200" height="150" /></div><br/><div class="additional-images"><img src="images/additional/sept_6.jpg" alt="" width="200" height="150" /></div><br/></div>
    <!--eof Additional Product Images -->

    It would appear that the Javascript is not working on the Additional Images. I have searched and tried a few things but have hit a brick wall, any suggestions would be helpful thanks.

  2. #2
    Join Date
    Jul 2007
    Posts
    342
    Plugin Contributions
    7

    Default Re: Additional images and Zen Lightbox

    Just in case anyone else has the same problem this partially fixed the problem. The additional images now show in Lightbox but the next and previous buttons are not working but at least it's workable. Added below to tpl_modules_additional_images.php thanks to Brandon Walters
    require(DIR_WS_MODULES . zen_get_module_directory('additional_images.php'));
    ?>
    <?php
    if ($additional->RecordCount() > 0) {
    ?>
    <div id="productAdditionalImages">
    <!-- Fix for broken click to enlarge - Brandon Walters http://www.bwaltdesigns.com -->
    <?php
    while(!$additional->EOF) {
    echo '<div class="additional-images"><a href="images/' .$additional->fields['additional_image']. '" rel="lightbox">'.zen_image(DIR_WS_IMAGES . $additional->fields['additional_image'], '', ADDITIONAL_SMALL_IMAGE_WIDTH, ADDITIONAL_SMALL_IMAGE_HEIGHT).'</a></div><br/>';
    $additional->MoveNext();
    }
    ?>
    </div>
    <?php
    }
    ?>

 

 

Similar Threads

  1. Additional images and Zen Lightbox
    By ianhg in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 15 Oct 2014, 12:37 AM
  2. v138a additional images sometimes not opening correctly using Zen Lightbox
    By paddy_uk2007 in forum General Questions
    Replies: 0
    Last Post: 10 May 2012, 04:43 PM
  3. v139h Zen Lightbox - Additional images not working
    By vaishali in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 27 Mar 2012, 11:36 AM
  4. additional images not showing after upgrading zen lightbox
    By james739 in forum General Questions
    Replies: 4
    Last Post: 28 Mar 2008, 06:27 PM
  5. lightbox and additional images
    By digz in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 13 Oct 2007, 06:21 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