Page 70 of 74 FirstFirst ... 20606869707172 ... LastLast
Results 691 to 700 of 740
  1. #691
    Join Date
    May 2006
    Posts
    12
    Plugin Contributions
    0

    Default Re: ZX Slideshow support thread

    Quote Originally Posted by dbltoe View Post
    The code can be all one line or many lines. IF the syntax is correct, you just have to end each line with a semicolon so the MySQL can know what to do.
    Code:
    SET @ZXconfig=0;
    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;
    DELETE FROM admin_pages WHERE page_key = 'configZXSlideshow';
    Hi

    Thanks, I ran it and got this

    WARNING: An Error occurred, please refresh the page and try again.If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

    Any thoughts

    Thanks

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

    Default Re: ZX Slideshow support thread

    How were you running it? Through the Install SQL Patches under Tools?

    Try it as this
    Code:
    SET @ZXconfig=0;
    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;
    DELETE FROM admin_pages WHERE page_key = 'configZXSlideshow';

  3. #693
    Join Date
    May 2006
    Posts
    12
    Plugin Contributions
    0

    Default Re: ZX Slideshow support thread

    Quote Originally Posted by dbltoe View Post
    How were you running it? Through the Install SQL Patches under Tools?

    Try it as this
    Code:
    SET @ZXconfig=0;
    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;
    DELETE FROM admin_pages WHERE page_key = 'configZXSlideshow';
    Thanks, But I still get the same error, I am pasting in install sql patches

    Cheers

  4. #694
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,107
    Plugin Contributions
    11

    Default Re: ZX Slideshow support thread

    Don't know what to say as it runs fine for me. Should be pretty easy to manually find and delete in PHPmyADMIN

  5. #695
    Join Date
    May 2006
    Posts
    12
    Plugin Contributions
    0

    Default Re: ZX Slideshow support thread

    Quote Originally Posted by dbltoe View Post
    Don't know what to say as it runs fine for me. Should be pretty easy to manually find and delete in PHPmyADMIN
    Thanks, Because, PHPmyAdmin is something I have never edited can you please tell me what to delete ? I would prefer not to trash the who site :-)

    Cheers

  6. #696
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,541
    Plugin Contributions
    19

    Default Re: ZX Slideshow support thread

    So, phpMyAdmin is actually a really simple and very useful tool. Access it from your cPanel and you'll see your database(s) in the left hand side column. If you see "information_schema" etc, you're at top level, so you need to navigate to your database by clicking on it's name. If you're not sure what it is, open your /public_html/includes/configure.php and check what it says under DB_NAME.
    Before you continue, go to the bottom of the post and read the important note.

    Once you've opened your database, you'll see a bunch of tables on the right hand side, most likely starting with address_book, address_format etc. Now, one important thing here - check for prefix. It could start with zen_address_book, zc_address_book or anything alike - the part before address_book is your prefix. Next, click on the SQL tab above and paste the query:
    Code:
    SET @ZXconfig=0;
    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;
    DELETE FROM admin_pages WHERE page_key = 'configZXSlideshow';
    If, and ONLY IF, your tables have prefixes, you'd need to update the query to:
    Code:
    SET @ZXconfig=0;
    SELECT @ZXconfig:=configuration_group_id FROM zen_configuration_group WHERE configuration_group_title= 'ZX Slideshow' LIMIT 1;
    DELETE FROM zen_configuration WHERE configuration_group_id = @ZXconfig;
    DELETE FROM zen_configuration_group WHERE configuration_group_id = @ZXconfig;
    DELETE FROM zen_admin_pages WHERE page_key = 'configZXSlideshow';
    Of course, use the prefix that matches your tables.

    Run the query and that's it.

    IMPORTANT NOTE: remember to BACKUP your database before running ANY SQL patches. I take no responsibility if you don't do a proper backup and something goes wrong...

  7. #697
    Join Date
    Apr 2008
    Posts
    446
    Plugin Contributions
    1

    Default Re: ZX Slideshow support thread

    Hello everyone.

    I'm trying to do something, and I don't even know if this is possible, so before I drive myself crazy, I wanted to ask. Is it possible to use the html_text in place of the title for the banner in the caption area of the slide, perhaps with some form of animation as the slides have?

    What I'm trying to accomplish is have each slide display more text rather than just the title of the slide, when it first pops into the screen. This would (in theory) accomplish 2 things, increase SEO since now there is actual text on the landing page, keywords and so on, and provide a bit more info to visitors.

    I played a bit with the functions/extra_functions/zx_banner.php and it seems there's no way to insert anything in there (in other words I broke the slider). I also took a look at jquery.nivo.slider.pack.js file where the div for the actual caption seems to be located, but I'm 200% illiterate when it comes to java, and I wouldn't even know how to edit the file.

    Any help is truly appreciated.

  8. #698
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,541
    Plugin Contributions
    19

    Default Re: ZX Slideshow support thread

    I haven't tried it, but I guess it could be done with quite some code modification. Personally, I wouldn't go into it, don't think it's worth the effort. Nivo was just not built for that...

  9. #699
    Join Date
    Apr 2008
    Posts
    446
    Plugin Contributions
    1

    Default Re: ZX Slideshow support thread

    Quote Originally Posted by balihr View Post
    I haven't tried it, but I guess it could be done with quite some code modification. Personally, I wouldn't go into it, don't think it's worth the effort. Nivo was just not built for that...
    I figured it would be too complicated/not worth it. Thanks for the quick reply though! I really appreciate it!

  10. #700
    Join Date
    Aug 2007
    Posts
    67
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    I installed this slide show on a fresh install of 157 and have not been able to get it to work. It shows in the admin panel but not on the page. I have bootstrap installed but did try it in the two standard zc templates. Anybody have trouble out there? www.makupartist.com

    PHP Version 7.4.27
    Thanks
    Todd

 

 
Page 70 of 74 FirstFirst ... 20606869707172 ... LastLast

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3594
    Last Post: 21 Mar 2024, 06:56 PM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 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