Is this slide show not supported anymore and if so is there one that is working now.
Printable View
Is this slide show not supported anymore and if so is there one that is working now.
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
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 .
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 -->
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
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>
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