Page 71 of 75 FirstFirst ... 21616970717273 ... LastLast
Results 701 to 710 of 744
  1. #701
    Join Date
    Aug 2007
    Posts
    67
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Is this slide show not supported anymore and if so is there one that is working now.

  2. #702
    Join Date
    May 2006
    Posts
    12
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by tbokich View Post
    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
    It works on 1.5.7 I even found someone to solve the slow loading issue I had, Mine came installed in the template so I can offer any advice as to why its not working,

    https://www.exatek.com.au/

    Try this guy on Fiver he may be able to help.

    https://business.fiverr.com/benwpr/h...c83a409f35f9e2

  3. #703
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    Been really busy lately, didn't have time to be here, sorry.

    Can you please try removing your
    includes/templates/bootstrap/jscript/jscript_jquery-1.7.1.min.js
    You can just rename it to xx_jscript_jquery-1.7.1.min.js so it doesn't automatically load.
    That file is obsolete and was supposed to be removed from the latest version, don't know how it slipped through.

    Next, did you add any banners for the appropriate slideshow banner groups?

  4. #704
    Join Date
    Feb 2009
    Location
    atlanta GA
    Posts
    278
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    Been really busy lately, didn't have time to be here, sorry.

    Can you please try removing your
    includes/templates/bootstrap/jscript/jscript_jquery-1.7.1.min.js
    You can just rename it to xx_jscript_jquery-1.7.1.min.js so it doesn't automatically load.
    That file is obsolete and was supposed to be removed from the latest version, don't know how it slipped through.

    Next, did you add any banners for the appropriate slideshow banner groups?
    Hello there
    Thank you for all your work on this plugin. Do you know if there is a way to make the slider window smaller ? Also is it possible to have the " Welcome Guest! Would you like to log yourself in?" message link above it ? Instead of blow it ? Thanks again .
    Zencart 1.5.6c PHP 7.2 Order Replacement AC Adapters and Power Cords Online www.missingcord.com

  5. #705
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by jasonshanks View Post
    Hello there
    Thank you for all your work on this plugin. Do you know if there is a way to make the slider window smaller ? Also is it possible to have the " Welcome Guest! Would you like to log yourself in?" message link above it ? Instead of blow it ? Thanks again .
    The slider is responsive, meaning it will always adapt to it's parent container. in your case, it adapts width to the center column, and then adapts the height to be proportional to width. If you need it smaller in height, you'd need to use different images, something wider and shorter.

    The welcome message - you'll need to reposition the slider code. Just edit your includes/templates/responsive_classic/templates/tpl_index_default.php and move the ZX Slideshow block of code below the greeting block. It should look something like this:

    Code:
    <div class="centerColumn" id="indexDefault">
    <h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>
    
    <?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
    <h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
    <?php } ?>
        
    <!-- begin edit for ZX Slideshow -->
    <?php if(ZX_SLIDESHOW_STATUS == 'true') { ?>
        <?php require($template->get_template_dir('zx_slideshow.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/zx_slideshow.php'); ?>
    <?php } ?>
    <!-- end edit for ZX Slideshow -->

  6. #706
    Join Date
    May 2006
    Posts
    12
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    Been really busy lately, didn't have time to be here, sorry.

    Can you please try removing your
    includes/templates/bootstrap/jscript/jscript_jquery-1.7.1.min.js
    You can just rename it to xx_jscript_jquery-1.7.1.min.js so it doesn't automatically load.
    That file is obsolete and was supposed to be removed from the latest version, don't know how it slipped through.

    Next, did you add any banners for the appropriate slideshow banner groups?
    To which question where you replying .

    Thanks

  7. #707
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by exatek View Post
    To which question where you replying .

    Thanks
    LOL, looks like I forgot to quote... Post #703 was a reply to post #700, basically the last one that was asked.

  8. #708
    Join Date
    Oct 2009
    Posts
    298
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Hi balihr,

    I have just installed the plug in on a fresh copy of ZC v.1.5.8 (including running the SQL statement) and just as the poster in post #700 has, it shows in my Admin->Config, I have enabled it, and added a banner in Banner Manager to banner group Slide 1, but nothing shows on my main page.

    I have read the rest of the posts and see you suggested to remove the jscript_jquery-1.7.1.min.js file...I have tried this and still nothing showing on the main page.

    I have checked the Logs folder and only shows a PHP version error of:

    --> PHP Warning: Use of undefined constant TEXT_MAIN - assumed 'TEXT_MAIN' (this will throw an Error in a future version of PHP) in C:\wamp64\www\158\includes\templates\CUSTOM\templates\tpl_index_default.php on line 31. and also same error on line 32.

    Any ideas on why it is not displaying??

    Thanks for your help,

    Jeff

  9. #709
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    I gotta admit I haven't tested this plugin on 1.5.8 yet, primarily because I have v2 planned for later this month...

    Assuming your logs aren't modified, you're using a template named "CUSTOM" - did you add the files from YOUR_TEMPLATE do that directory? If so, this was probably a mistake because the 1.5.8 version of that file is slightly different and tpl_index_default.php should look something like this:
    Code:
    <?php
    /**
     * Page Template
     *
     * Main index page
     * Displays greetings, welcome text (define-page content), and various centerboxes depending on switch settings in Admin
     * Centerboxes are called as necessary
     *
     * @copyright Copyright 2003-2022 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: DrByte 2020 Dec 25 Modified in v1.5.8-alpha $
     */
    ?>
    <div class="centerColumn" id="indexDefault">
    
    <!-- begin edit for ZX Slideshow -->
    <?php if(ZX_SLIDESHOW_STATUS == 'true') { ?>
        <?php require($template->get_template_dir('zx_slideshow.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/zx_slideshow.php'); ?>
    <?php } ?>
    <!-- end edit for ZX Slideshow -->
        
    <h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>
    
    <?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
    <h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
    <?php } ?>
    
    <?php if (DEFINE_MAIN_PAGE_STATUS >= 1 and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
    <?php
    /**
     * get the Define Main Page Text
     */
    ?>
    <div id="indexDefaultMainContent" class="content"><?php require($define_page); ?></div>
    <?php } ?>
    
    <?php
      $show_display_category = $db->Execute(SQL_SHOW_PRODUCT_INFO_MAIN);
      while (!$show_display_category->EOF) {
    ?>
    
    <?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS') { ?>
    <?php
    /**
     * display the Featured Products Center Box
     */
    ?>
    <?php require($template->get_template_dir('tpl_modules_featured_products.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_featured_products.php'); ?>
    <?php } ?>
    
    <?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS') { ?>
    <?php
    /**
     * display the Special Products Center Box
     */
    ?>
    <?php require($template->get_template_dir('tpl_modules_specials_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_specials_default.php'); ?>
    <?php } ?>
    
    <?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS') { ?>
    <?php
    /**
     * display the New Products Center Box
     */
    ?>
    <?php require($template->get_template_dir('tpl_modules_whats_new.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_whats_new.php'); ?>
    <?php } ?>
    
    <?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_MAIN_UPCOMING') { ?>
    <?php
    /**
     * display the Upcoming Products Center Box
     */
    ?>
    <?php include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_UPCOMING_PRODUCTS)); ?><?php } ?>
    
    
    <?php
      $show_display_category->MoveNext();
    } // !EOF
    ?>
    </div>

  10. #710
    Join Date
    Oct 2009
    Posts
    298
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Hi balihr,

    Thanks for your reply and yes, I did upload the files to my CUSTOM folders to recognize these as this is my selected template.

    Thanks for the heads up that you will be updating this plugin this month, and also for the updated for the tpl_index_default.php I have copied this code and replaced this file using this new code, but it still does not appear on my main page. I have checked the Logs folder and there is no DEBUG logs....so not sure where I've gone wrong. Is it possible that it has something to do with the tpl_index_default.php as this file is not a stock file in the /templates folder....it only exists in this module?

    Do you have any other suggestions or perhaps just wait until you have had the time to work on the updated plugin??


    Thanks,

    Jeff
    Last edited by NWCE; 9 Jan 2023 at 05:24 PM.

 

 
Page 71 of 75 FirstFirst ... 21616970717273 ... LastLast

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3606
    Last Post: 25 Apr 2024, 02:41 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