Page 116 of 373 FirstFirst ... 1666106114115116117118126166216 ... LastLast
Results 1,151 to 1,160 of 3726
  1. #1151
    Join Date
    Nov 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Please nobody ken help mee ?

    I discover if i press on the page with the name COMENTARII and after dat i push on the pictures, the light box worg verry good.But if i go CATEGORII - > PRODUCT - > AND -> PUSH OF THE IMAGE PRODUCT is not work (is not load the image.)

    Please help mee ...

    Sorry for my bad english !

    Best regards !

  2. #1152
    Join Date
    Nov 2007
    Posts
    162
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Thank you CES for the links. After much research, trial and error, and finding solutions that did not solve the issue, it turns out that your original suggestion a few days ago of just changing the 'z-index' worked perfectly. My problem was, I had no clue WHAT a z-index was (I do NOW) nor did I know WHAT file to look for it in or where to even begin looking or what to change even if i found it...

    So, in case there are any other non-programmers/css/php/sql savvy zencart users out there besides me... and for anyone else that has tirelessly researched these boards looking for a way to get lightbox to appear in FRONT of a css drop-down header menu...

    Here is the ultimate solution that has finally and successfully worked for me....

    1. open the following file:
    /includes/templates/YOUR_TEMPLATE/css/stylesheet_lightbox.css

    2. at the top of the page find this code:

    Code:
    #lightbox{
    	position: absolute;
    	left: 0;
    	width: 100%;
    	z-index: 100;
    	text-align: center;
    	line-height: 0;
    	}
    3. change the value of z-index from 100 to 9000

    TA-DA... THE PERFECT INTEGRATION OF LIGHTBOX WITH A CSS DROP DOWN HEADER MENU

    So thank you VERY much for your z-index suggestion that worked perfectly once I figured out what it meant

    Zencart ROCKS
    www.ZenCrystals.com
    www.CraftMagick.com
    Magickal & Metaphysical supplies/services

  3. #1153
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Zen Lightbox...

    Always clear your cache on your browser when ever you change things. This way it will always show you what you have changed.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  4. #1154
    Join Date
    Nov 2007
    Posts
    162
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by countrycharm View Post
    Always clear your cache on your browser when ever you change things. This way it will always show you what you have changed.
    Thank you very much for the tip Countrycharm, I appreciate it. I always 'refresh' the page, but I probably could have saved myself hours of frustration by simply clearing the cache, as well.

    I appreciate your taking the time to offer this valueable suggestion and will definitely take heed.

    Have a joyous, safe, and blessed holiday season.

    Zencart ROCKS
    www.ZenCrystals.com
    www.CraftMagick.com
    Magickal & Metaphysical supplies/services

  5. #1155
    Join Date
    Dec 2006
    Posts
    32
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    For everyone that is getting this error when trying to add the installation SQL patch into their Zen Cart. What the problem is, is an extra table in your configuration_group from working with a website that is in multiple languages. You have to modify your SQL to work. I used the code below and it worked great!


    INSERT INTO configuration_group
    VALUES (

    NULL , 'Zen Lightbox', 'Configure Zen Lightbox options', '1', '1'
    );



    MySQL meldet:

    #1136 - Column count doesn't match value count at row 1


    ***********************Use the code below instead************

    INSERT INTO configuration_group VALUES (NULL, 'Zen Lightbox', 'Configure Zen Lightbox options', '1', '1', '1');
    UPDATE configuration_group SET sort_order = last_insert_id() WHERE configuration_group_id = last_insert_id();

    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4
    FROM configuration_group
    WHERE configuration_group_title= 'Zen Lightbox';

    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES (NULL, 'Enable Zen Lightbox?', 'ZEN_LIGHTBOX_STATUS', 'true', '<br />If true, all product images on the following pages will be displayed within a lightbox:<br /><br />- document_general_info<br />- document_product_info<br />- product_free_shipping_info<br />- product_info<br />- product_music_info<br />- product_reviews<br />- product_reviews_info<br />- product_reviews_write<br /><br />Please note: To completely remove Zen Lightbox you will need to manually delete the installation files.<br /><br /><b>Default: true</b>', @t4, 1, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
    (NULL, 'Overlay Opacity', 'ZEN_LIGHTBOX_OVERLAY_OPACITY', '0.8', '<br />Controls the transparency of the overlay.<br /><br /><b>Default: 0.8</b>', @t4, 2, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''0'', ''0.1'', ''0.2'', ''0.3'', ''0.4'', ''0.5'', ''0.6'', ''0.7'', ''0.8'', ''0.9'', ''1''), '),
    (NULL, 'Overlay Fade Duration', 'ZEN_LIGHTBOX_OVERLAY_DURATION', '0.2', '<br />Controls the fade duration of the overlay.<br /><br /><b>Default: 0.2</b>', @t4, 3, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''0'', ''0.1'', ''0.2'', ''0.3'', ''0.4'', ''0.5'', ''0.6'', ''0.7'', ''0.8'', ''0.9'', ''1''), '),
    (NULL, 'Enable Resize Animations?', 'ZEN_LIGHTBOX_RESIZE_ANIMATIONS', 'true', '<br />If true, the lightbox will be animated as it appears on the screen.<br /><br /><b>Default: true</b>', @t4, 4, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
    (NULL, 'Resize Speed', 'ZEN_LIGHTBOX_RESIZE_SPEED', '7', '<br />Controls the speed of the image resizing.<br /><br />(1 = slowest and 10 = fastest)<br /><br /><b>Default: 7', @t4, 5, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10''), '),
    (NULL, 'Border Size', 'ZEN_LIGHTBOX_BORDER_SIZE', '10', '<br />If you adjust the padding in the CSS file, you will need to update this variable.<br /><br />Please note: This value is measured in pixels.<br /><br /><b>Default: 10</b><br />', @t4, 6, NOW(), NOW(), NULL, NULL),
    (NULL, 'Close on Overlay Click?', 'ZEN_LIGHTBOX_CLOSE_OVERLAY', 'false', '<br />If true, the lightbox will close when the overlay is clicked.<br /><br /><b>Default: false</b>', @t4, 7, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
    (NULL, 'Hide Flash Objects?', 'ZEN_LIGHTBOX_HIDE_FLASH', 'true', '<br />If true, all Flash objects will be hidden when the lightbox is displayed.<br /><br /><b>Default: true</b>', @t4, 8, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
    (NULL, 'DIV Class to Hide', 'ZEN_LIGHTBOX_HIDE_ME', 'zenLightboxHideMe', '<br />Any content wrapped in a DIV tag with this class will be hidden when the lightbox is displayed.<br /><br /><b>Default: zenLightboxHideMe</b><br />', @t4, 9, NOW(), NOW(), NULL, NULL);

  6. #1156
    Join Date
    Aug 2006
    Location
    HCMC
    Posts
    268
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Dear all,

    My website have some little problem with Zencart Light box + You tuble video code.

    When i click into image of product which have video from you tuble. The image behind the video ! How to configure for image show in the first ?

    This is image:




    KIM SON

    Thanks you !!

  7. #1157
    Join Date
    Oct 2008
    Posts
    12
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Is there any detailed instructions for removing this MOD?

  8. #1158
    Join Date
    Oct 2008
    Posts
    12
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by brown12321 View Post
    Is there any detailed instructions for removing this MOD?
    The reason I ask is because I tried to go by what I installed and remove those files, Once I did the Product Info pages were black when I go to view a product.

  9. #1159
    Join Date
    Oct 2008
    Posts
    12
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    The reason I want to remove, its not working with extra images. I have made sure the file name is correct with the extension and still additional images do not work.

  10. #1160
    Join Date
    Mar 2006
    Posts
    919
    Plugin Contributions
    2

    Default Re: Zen Lightbox...

    Just a quick update...

    I've spent the last few weeks working on Zen Lightbox v1.5 and can confirm that it will be released within the next 48 hours.

    It's packed full of bug fixes, new features and much more!

    At present, I'm just about to write the new installation SQL and then update the documentation. Once complete I'll upload v1.5 to the contributions section and post a follow-up here.

    So, if anyone is planning on installing Zen Lightbox (or fixing an existing bug) you might want to save some time and wait for the update.

    Best Regards,

    Alex

 

 

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