Page 40 of 77 FirstFirst ... 30383940414250 ... LastLast
Results 391 to 400 of 762
  1. #391
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: ZX Slideshow official thread

    There is an issue with the install SQL in this module that could cause issues in other parts of Zen Cart.. The issue is very well documented here:

    http://www.zen-cart.com/showthread.p...178#post993178

    This post reads as follows:
    Quote Originally Posted by swguy View Post
    Here's the root cause. Some mods which have SQL scripts that create new configuration groups will do an initial cleanup like this: (this example is taken from Printable Price List)

    SELECT @pricelistid:=configuration_group_id
    FROM configuration_group WHERE configuration_group_title="Printable Price-list";

    DELETE FROM configuration WHERE configuration_group_id=@pricelistid;
    DELETE FROM configuration_group WHERE configuration_group_id=@pricelistid;

    This works and does not cause problems. However, other mods set an initial value for the variable. This causes the problem. The example below is taken from Fual Slimbox:

    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4
    FROM configuration_group
    WHERE configuration_group_title= 'Fual Slimbox';
    DELETE FROM configuration WHERE configuration_group_id = @t4;
    DELETE FROM configuration_group WHERE configuration_group_id = @t4;

    If you run this sql, and you have not previously installed Fual Slimbox, you will delete the 2 prefix and product options type select values which are in group 0.

    Again, I believe the proper way to resolve this is to change the Zen Cart sql to put these items in a non-zero group.

    I did a quick check of some mods I have downloaded (not an exhaustive list), and the following mods have this bug:

    FAQ Manager
    Google Analytics
    SimpleSEOURL
    Fual Slimbox
    Super Orders
    Integrated COWOA
    Google Sitemap Admin
    Autoresponder+
    Return Authorization
    Recover Cart Sales
    CaptchaTTF and Hide Phone
    Amazon Exporter
    Fast and Easy Checkout
    Testimonial Manager
    Ty Package Tracker
    The SQL file in this package contains this kind of incorrectly formated code (see highlighted section):
    Code:
    SET @configuration_group_id=0;
    SELECT @configuration_group_id:=configuration_group_id
    FROM configuration_group
    WHERE configuration_group_title= 'ZX Slideshow'
    LIMIT 1;
    DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id;
    DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id;
    INSERT INTO configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) VALUES (NULL, 'ZX Slideshow', 'Set Slideshow Options', '1', '1');
    SET @configuration_group_id=last_insert_id();
    UPDATE configuration_group SET sort_order = @configuration_group_id WHERE configuration_group_id = @configuration_group_id;
    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES 
    (NULL, 'ZX Slideshow', 'ZX_SLIDESHOW_STATUS', 'false', 'Activate ZX Slideshow for the main page', @configuration_group_id, 1, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Theme', 'ZX_SLIDESHOW_THEME', 'default', 'Select your theme', @configuration_group_id, 2, NOW(), NULL, 'zen_cfg_select_option(array(\'default\', \'light\', \'dark\', \'bar\'),'),
    (NULL, ' Effect', 'ZX_SLIDESHOW_EFFECT', 'fade', 'Effect used for image transition', @configuration_group_id, 3, NOW(), NULL, 'zen_cfg_select_option(array(\'sliceDown\', \'sliceDownLeft\', \'sliceUp\', \'sliceUpLeft\', \'sliceUpDown\', \'sliceUpDownLeft\', \'fold\', \'fade\', \'random\', \'slideInRight\', \'slideInLeft\', \'boxRandom\', \'boxRain\', \'boxRainReverse\', \'boxRainGrow\', \'boxRainGrowReverse\'),'),
    (NULL, 'Slideshow Animation Speed', 'ZX_SLIDESHOW_ANIM_SPEED', '500', 'Slide transition speed in miliseconds', @configuration_group_id, 4, NOW(), NULL, NULL),
    (NULL, 'Slideshow Pause Time', 'ZX_SLIDESHOW_PAUSE', '4000', 'How long each slide will show in miliseconds', @configuration_group_id, 5, NOW(), NULL, NULL),
    (NULL, 'Slideshow Navigation Arrows', 'ZX_SLIDESHOW_NAV', 'true', 'Show Prev/Next navigation arrows', @configuration_group_id, 6, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Navigation Hide', 'ZX_SLIDESHOW_NAV_HIDE', 'true', 'Show Prev/Next navigation arrows only on hover', @configuration_group_id, 7, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Numbered Navigation', 'ZX_SLIDESHOW_CONTROL_NAV', 'true', 'Show 1,2,3... navigation', @configuration_group_id, 8, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Pause on Hover', 'ZX_SLIDESHOW_HOVER_PAUSE', 'true', 'Stop animation while hovering', @configuration_group_id, 9, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Captions', 'ZX_SLIDESHOW_CAPTION_OPACITY', '0.8', 'Caption opacity (set to 0 for invisible)', @configuration_group_id, 10, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide1', 'ZX_SLIDESHOW_BANNERS_GROUP_SET9', 'slide1', 'Slide 1', @configuration_group_id, 30, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide2', 'ZX_SLIDESHOW_BANNERS_GROUP_SET10', 'slide2', 'Slide 2', @configuration_group_id, 31, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide3', 'ZX_SLIDESHOW_BANNERS_GROUP_SET11', 'slide3', 'Slide 3', @configuration_group_id, 32, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide4', 'ZX_SLIDESHOW_BANNERS_GROUP_SET12', 'slide4', 'Slide 4', @configuration_group_id, 33, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide5', 'ZX_SLIDESHOW_BANNERS_GROUP_SET13', 'slide5', 'Slide 5', @configuration_group_id, 34, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide6', 'ZX_SLIDESHOW_BANNERS_GROUP_SET14', 'slide6', 'Slide 6', @configuration_group_id, 35, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide7', 'ZX_SLIDESHOW_BANNERS_GROUP_SET15', 'slide7', 'Slide 7', @configuration_group_id, 36, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide8', 'ZX_SLIDESHOW_BANNERS_GROUP_SET16', 'slide8', 'Slide 8', @configuration_group_id, 37, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide9', 'ZX_SLIDESHOW_BANNERS_GROUP_SET17', 'slide9', 'Slide 9', @configuration_group_id, 38, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide10', 'ZX_SLIDESHOW_BANNERS_GROUP_SET18', 'slide10', 'Slide 10', @configuration_group_id, 39, NOW(), NULL, NULL),
    (NULL, 'ZX Slideshow Version', 'ZX_SLIDESHOW_VERSION', '2.0', 'Currently using: <strong>v2.0</strong><br />Module brought to you by <a href="http://www.zenexpert.com" target="_blank">ZenExpert</a>', @configuration_group_id, 50, NOW(), NULL, 'zen_cfg_select_option(array(\'2.0\'),');
    # Register the configuration page for Admin Access Control
    DELETE FROM admin_pages WHERE page_key = 'configZXSlideshow';
    INSERT IGNORE INTO admin_pages (page_key,language_key,main_page,page_params,menu_key,display_on_menu,sort_order) VALUES ('configZXSlideshow','BOX_CONFIGURATION_ZX_SLIDESHOW','FILENAME_CONFIGURATION',CONCAT('gID=',@configuration_group_id),'configuration','Y',@configuration_group_id);
    The correct install SQL is as follows:
    Code:
    SELECT @ZXconfig:=configuration_group_id
    FROM configuration_group
    WHERE configuration_group_title= 'ZX Slideshow'
    LIMIT 1;
    DELETE FROM configuration WHERE configuration_group_id = @ZXconfig;
    DELETE FROM configuration_group WHERE configuration_group_id = @ZXconfig;
    INSERT INTO configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) VALUES (NULL, 'ZX Slideshow', 'Set Slideshow Options', '1', '1');
    SET @ZXconfig=last_insert_id();
    UPDATE configuration_group SET sort_order = @ZXconfig WHERE configuration_group_id = @ZXconfig;
    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES 
    (NULL, 'ZX Slideshow', 'ZX_SLIDESHOW_STATUS', 'false', 'Activate ZX Slideshow for the main page', @ZXconfig, 1, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Theme', 'ZX_SLIDESHOW_THEME', 'default', 'Select your theme', @ZXconfig, 2, NOW(), NULL, 'zen_cfg_select_option(array(\'default\', \'light\', \'dark\', \'bar\'),'),
    (NULL, ' Effect', 'ZX_SLIDESHOW_EFFECT', 'fade', 'Effect used for image transition', @ZXconfig, 3, NOW(), NULL, 'zen_cfg_select_option(array(\'sliceDown\', \'sliceDownLeft\', \'sliceUp\', \'sliceUpLeft\', \'sliceUpDown\', \'sliceUpDownLeft\', \'fold\', \'fade\', \'random\', \'slideInRight\', \'slideInLeft\', \'boxRandom\', \'boxRain\', \'boxRainReverse\', \'boxRainGrow\', \'boxRainGrowReverse\'),'),
    (NULL, 'Slideshow Animation Speed', 'ZX_SLIDESHOW_ANIM_SPEED', '500', 'Slide transition speed in miliseconds', @ZXconfig, 4, NOW(), NULL, NULL),
    (NULL, 'Slideshow Pause Time', 'ZX_SLIDESHOW_PAUSE', '4000', 'How long each slide will show in miliseconds', @ZXconfig, 5, NOW(), NULL, NULL),
    (NULL, 'Slideshow Navigation Arrows', 'ZX_SLIDESHOW_NAV', 'true', 'Show Prev/Next navigation arrows', @ZXconfig, 6, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Navigation Hide', 'ZX_SLIDESHOW_NAV_HIDE', 'true', 'Show Prev/Next navigation arrows only on hover', @ZXconfig, 7, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Numbered Navigation', 'ZX_SLIDESHOW_CONTROL_NAV', 'true', 'Show 1,2,3... navigation', @ZXconfig, 8, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Pause on Hover', 'ZX_SLIDESHOW_HOVER_PAUSE', 'true', 'Stop animation while hovering', @ZXconfig, 9, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Slideshow Captions', 'ZX_SLIDESHOW_CAPTION_OPACITY', '0.8', 'Caption opacity (set to 0 for invisible)', @ZXconfig, 10, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide1', 'ZX_SLIDESHOW_BANNERS_GROUP_SET9', 'slide1', 'Slide 1', @ZXconfig, 30, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide2', 'ZX_SLIDESHOW_BANNERS_GROUP_SET10', 'slide2', 'Slide 2', @ZXconfig, 31, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide3', 'ZX_SLIDESHOW_BANNERS_GROUP_SET11', 'slide3', 'Slide 3', @ZXconfig, 32, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide4', 'ZX_SLIDESHOW_BANNERS_GROUP_SET12', 'slide4', 'Slide 4', @ZXconfig, 33, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide5', 'ZX_SLIDESHOW_BANNERS_GROUP_SET13', 'slide5', 'Slide 5', @ZXconfig, 34, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide6', 'ZX_SLIDESHOW_BANNERS_GROUP_SET14', 'slide6', 'Slide 6', @ZXconfig, 35, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide7', 'ZX_SLIDESHOW_BANNERS_GROUP_SET15', 'slide7', 'Slide 7', @ZXconfig, 36, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide8', 'ZX_SLIDESHOW_BANNERS_GROUP_SET16', 'slide8', 'Slide 8', @ZXconfig, 37, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide9', 'ZX_SLIDESHOW_BANNERS_GROUP_SET17', 'slide9', 'Slide 9', @ZXconfig, 38, NOW(), NULL, NULL),
    (NULL, 'Banner Display Groups - Slide10', 'ZX_SLIDESHOW_BANNERS_GROUP_SET18', 'slide10', 'Slide 10', @ZXconfig, 39, NOW(), NULL, NULL),
    (NULL, 'ZX Slideshow Version', 'ZX_SLIDESHOW_VERSION', '2.0', 'Currently using: <strong>v2.0</strong><br />Module brought to you by <a href="http://www.zenexpert.com" target="_blank">ZenExpert</a>', @ZXconfig, 50, NOW(), NULL, 'zen_cfg_select_option(array(\'2.0\'),');
    # Register the configuration page for Admin Access Control
    DELETE FROM admin_pages WHERE page_key = 'configZXSlideshow';
    INSERT IGNORE INTO admin_pages (page_key,language_key,main_page,page_params,menu_key,display_on_menu,sort_order) VALUES ('configZXSlideshow','BOX_CONFIGURATION_ZX_SLIDESHOW','FILENAME_CONFIGURATION',CONCAT('gID=',@ZXconfig),'configuration','Y',@ZXconfig);
    I've NO PLANS to update and submit this module with this CRITICAL correction.. Will leave it to the original author or the community to do this.. However ANYONE using this slideshow add-on should NOT run the install SQL that comes with ZX Sliideshow and use this SQL instead.

    Edited to add.. Stupid IE8 is messing with how my post is formatted.. grrrrrrrrrrr but it should still be clear what it is that needs to be done..
    Last edited by DivaVocals; 7 May 2013 at 06:52 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #392
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,617
    Plugin Contributions
    19

    Default Re: ZX Slideshow support thread

    DivaVocals, thank you for the heads up on this bug. I must admit that I wasn't aware of that and have never noticed any weird behavior caused by it, but still...

    I've been away for too long and too occupied with my personal matters so I neglected supporting this module, but I'm back now and will continue supporting it. Thank you for stepping in lately.

    I'll submit an updated version sometime tomorrow, together with a fix for the flickering that I've noticed many people have problems with. c/p: opens a bit taller and then shrinks down to size as the slideshow changes -> will release an update tomorrow

  3. #393
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: ZX Slideshow support thread

    Quote Originally Posted by balihr View Post
    DivaVocals, thank you for the heads up on this bug. I must admit that I wasn't aware of that and have never noticed any weird behavior caused by it, but still...

    I've been away for too long and too occupied with my personal matters so I neglected supporting this module, but I'm back now and will continue supporting it. Thank you for stepping in lately.

    I'll submit an updated version sometime tomorrow, together with a fix for the flickering that I've noticed many people have problems with. c/p: opens a bit taller and then shrinks down to size as the slideshow changes -> will release an update tomorrow
    No problem.. happy to help with the solution.. The install SQL apparently causes issues with IH4 so that's how it came to my attention..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #394
    Join Date
    Feb 2009
    Posts
    33
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Hi, I hope someone can help me! I'm trying to put my slideshow the full width of my site and not just in my "center column" area. Thanks for any help!

  5. #395
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,617
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by missa425 View Post
    Hi, I hope someone can help me! I'm trying to put my slideshow the full width of my site and not just in my "center column" area. Thanks for any help!
    Open tpl_index_default.php file and cut the ZX Slideshow code, then open your tpl_header.php and paste that code in the position where you want the slideshow to appear.

  6. #396
    Join Date
    Feb 2009
    Posts
    33
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    THANK YOU SO MUCH! html is NOT my thing, but I've spent 6 hours today making changes to my site! If you have a moment, could you take a peek at my site tell me why there is now a "load" thing below were it used to be? I KNOW there is probably something I'm looking over, but I'm not sure what!

    http://melissadavisphotography.com/templatesforyou/

    Thanks!

  7. #397
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    Open tpl_index_default.php file and cut the ZX Slideshow code, then open your tpl_header.php and paste that code in the position where you want the slideshow to appear.
    Wanted to suggest that perhaps a conditional statement and an admin setting could make this easy to set from the admin so that folks won't have to do code modifications to simply change the position of the slidewhow..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  8. #398
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,617
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by missa425 View Post
    THANK YOU SO MUCH! html is NOT my thing, but I've spent 6 hours today making changes to my site! If you have a moment, could you take a peek at my site tell me why there is now a "load" thing below were it used to be? I KNOW there is probably something I'm looking over, but I'm not sure what!

    http://melissadavisphotography.com/templatesforyou/

    Thanks!
    You probably didn't cut the code from tpl_index_default.php but instead just copied... Make sure you remove it from tpl_index_default.php

  9. #399
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,617
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by DivaVocals View Post
    Wanted to suggest that perhaps a conditional statement and an admin setting could make this easy to set from the admin so that folks won't have to do code modifications to simply change the position of the slidewhow..
    Yeah, seems I'll have to put that in the next version. But, I'm afraid this might cause even more problems because in most cases, tpl_header.php is modified so they would still need to merge the code... If you have any suggestions, I'm willing to hear it.

  10. #400
    Join Date
    Feb 2009
    Posts
    33
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    ah ha...let me try that!

 

 
Page 40 of 77 FirstFirst ... 30383940414250 ... LastLast

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3662
    Last Post: 30 Apr 2025, 04:14 AM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. goMobile Support Thread
    By steveyork136 in forum Addon Templates
    Replies: 29
    Last Post: 26 Aug 2015, 11:56 AM
  4. Frontpage Slideshow [support thread]
    By sport_billy in forum All Other Contributions/Addons
    Replies: 108
    Last Post: 10 Jul 2014, 12:41 PM
  5. SnapShot [support thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 32
    Last Post: 26 Oct 2012, 08:38 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