Page 133 of 373 FirstFirst ... 3383123131132133134135143183233 ... LastLast
Results 1,321 to 1,330 of 3726
  1. #1321
    Join Date
    Jan 2009
    Posts
    107
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Doesnt seem to work for me.

    ZC 1.3.8

    Lightbox 1.5

    Renamed the following to match my Template:
    includes\languages\english\extra_definitions\YOUR-TEMPLATE-FOLDER
    includes\modules\YOUR-TEMPLATE-FOLDER
    includes\templates\YOUR-TEMPLATE-FOLDER

    Ran SQL command
    No error, 4 proesssed message above
    LightBox is under my Config / Zen LightBox in ZC

    However, when I can on any of my images, it opens in the "normal" ZC popup box.

  2. #1322
    Join Date
    Feb 2009
    Location
    Milton Keynes UK
    Posts
    3
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by jdnp View Post
    Hi Folks,

    Wondering if I can offset Zen Lightbox to display the FIRST additional image, instead of the original image first, then the additional.

    Main Product Display shows 'example.jpg'

    I want zen lightbox to display in this order:

    'example_01.jpg'
    'example_02.jpg'
    'example.jpg'

    Thanks

    J
    I too would like to be able to something like this. I want to display a different image in Lightbox to than product image. My searches have not shown me how. Any help would be appreciated.
    TIA
    Clockwork Tux

  3. #1323
    Join Date
    Feb 2009
    Location
    Milton Keynes UK
    Posts
    3
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by lancer View Post
    I am having trouble with my installed lightbox ... i seem to have everything in my admin ... and I can see it when i hover over CONFIGURATION in my admin panel ... but I'm not sure that the sql install went ok, and I'm wondering if there is something else I need to do to get my lightbox working ... there were no errors.

    There seems to be two selections in the configuration menu for zen lightbox as well, the second of which showed up when I installed the sql ... not sure what went wrong ... anyone know what the problem might be?
    Did you run the sql more than once? If so, and I'm not an expert here, but I think you need to run the uninstall.sql (maybe twice) then install.sql.
    Clockwork Tux

  4. #1324
    Join Date
    Feb 2009
    Location
    Milton Keynes UK
    Posts
    3
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by rainmist View Post
    I have the same problem. Does some kind man can tell me how to solve it? Thanks.
    I found the problem is in the SELECT query. It doesn't use the correct name for the 'configuration_group' and hence does not return the value to @cgi that is needed in the following INSERT INTO query.

    What I did (yesterday):
    Ran the first 2 statements one at atime using copy & paste in the Tools >> Install SQL Patches screen.
    Then open 'configuration_group' table in your database to look for the value in 'configuration_group_id' against the 'Zen Lightbox' configuration_group_title. In my case the value was 34.
    Copy the second INSERT INTO query to Notepad or other text editor and replace all '@CGI' with the value from configuration_group_id (in my case 34).
    Copy/paste the modified query to Tools >> Install SQL Patches screen and run.

    It worked for me so I hope works for you.

    NOTE: you may need to run uninstall.sql to start from scratch with the install.sql.
    Clockwork Tux

  5. #1325
    Join Date
    Jul 2004
    Location
    The Netherlands, Wierden
    Posts
    430
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by kagen View Post
    does anyone know why my light box has two of the same images??
    policyclothing.com

    thanks
    Any solutions for this?

  6. #1326
    Join Date
    Feb 2009
    Posts
    23
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Hi

    Firstly, love this mod, totally changes the look and feel of the site

    Secondly...

    Quote Originally Posted by CharInLasVegas View Post
    Alex, I had to finally uninstall LM and now LB is working fine again.
    It took me a while to get LB working, I previously had links manager mod running. When i installed LB mod all it did was open the images as a new page rather than a lightbox. I then found this post.
    I uninstalled Links Manager and LB works perfectly.

    So this is to confirm the 2 mods are not compatible.

    Finally, Alex, just some feedback on the new SQL code - I was getting errors on the code that came with the download as mentioned by others in previous posts.
    I ran your new code you posted a couple of pages back and it installed perfectly.

    Thanks again, love it!

  7. #1327
    Join Date
    Feb 2009
    Posts
    23
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Apologies, should have mentioned. To get lightbox to work I literally just ran this code to uninstall links manager... before I removed any LinksManager pages I tested lightBox - it worked perfectly, so it purely something incompatible with what the 2 sql codes do.

    Alex, I hope this code helps to find the incompatibility issue...

    Code:
    #Links Manager SQL Uninstall
    # For Zen-Cart 1.3.8
    # Version: 3.5.0
    # Updated: 1/7/2009
    
    SET @configuration_group_id=0;
    SELECT @configuration_group_id:=configuration_group_id 
    FROM configuration_group
    WHERE configuration_group_title= 'Links Manager'
    LIMIT 1;
    
    DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id;
    DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id;
    DELETE FROM configuration WHERE configuration_key = 'DEFINE_LINKS_STATUS';
    
    INSERT INTO `configuration` VALUES (NULL, 'Product option type Select', 'PRODUCTS_OPTIONS_TYPE_SELECT', '0', 'The number representing the Select type of product option.', 0, NULL, NULL, now(), NULL, NULL);
    INSERT INTO `configuration` VALUES (NULL, 'Upload prefix', 'UPLOAD_PREFIX', 'upload_', 'Prefix used to differentiate between upload options and other options', 0, NULL, NULL, now(), NULL, NULL);
    INSERT INTO `configuration` VALUES (NULL, 'Text prefix', 'TEXT_PREFIX', 'txt_', 'Prefix used to differentiate between text option values and other option values', 0, NULL, NULL, now(), NULL, NULL);
    INSERT INTO `configuration` VALUES (NULL, 'Image Handler Version', 'IH_VERSION', '2.0', 'This is used by image handler to check if the database is up to date with uploaded image handler files.', 0, 100, NULL, now(), NULL, 'zen_cfg_textarea_small(');
    
    DROP TABLE IF EXISTS `links_status`;
    
    DROP TABLE IF EXISTS `links_to_link_categories`;
    
    DROP TABLE IF EXISTS `link_categories`;
    
    DROP TABLE IF EXISTS `link_categories_description`;

  8. #1328
    Join Date
    Jan 2009
    Posts
    107
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by fastdc5 View Post
    Doesnt seem to work for me.

    ZC 1.3.8

    Lightbox 1.5

    Renamed the following to match my Template:
    includes\languages\english\extra_definitions\YOUR-TEMPLATE-FOLDER
    includes\modules\YOUR-TEMPLATE-FOLDER
    includes\templates\YOUR-TEMPLATE-FOLDER

    Ran SQL command
    No error, 4 proesssed message above
    LightBox is under my Config / Zen LightBox in ZC

    However, when I can on any of my images, it opens in the "normal" ZC popup box.

    What am I missing here fellas?

  9. #1329
    Join Date
    Jan 2009
    Posts
    107
    Plugin Contributions
    0

  10. #1330
    Join Date
    Feb 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by fastdc5 View Post
    What am I missing here fellas?
    Chances are you are actually throwing Javascript errors, if you check your error console, as I'm experiencing the same behavior after uninstalling 1.4 and installing 1.5.

    I'm seeing the following errors in the console:
    Code:
    $.element is not a function in zen_lightbox_mootools_custom.js
    This occurs on page load. When clicking the actual image, I receive the following:
    Code:
    Hash.each is not a function in zen_lightbox_mootools_custom.js
    I'm not sure if this is something residual from my previous install (which I had to eliminate due to the IE 7 error), or something is misconfigured on my new install.

 

 

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